yuyulvxian 发表于 2005-12-2 13:47:18

2.6.14支持 FAT32文件系统吗

对于WINDOWS/DOS的文件系统LINUX好像只支持 NTFS和FAT FAT32的硬盘不支持阿

leetand 发表于 2005-12-2 15:08:21

一定支持。呵呵。看看默认的内核就应该把FAT32支持编译成模块了。可以看/boot/config-xxx来确认你当前的内核是否编译了FAT32支持。

yuyulvxian 发表于 2005-12-2 16:24:06

我装了两个内核 2.4.20-8 和 2.6.13.4
但在/boot下只有 config-2.4.20-8 没有 config-2.6.14.3(在2.6.14.3下运行)

mount -t vfat 中的 VFAT是不是表示 FAT和FAT32文件系统的总和
如果 VFAT 只表示FAT 那FAT32用什么来表示
msdos 代表哪些文件系统 具体是哪些(现在概念不清中....)

yuyulvxian 发表于 2005-12-2 16:43:45

/dev/hda5 是D盘 (NTFS)
/dev/hda6 是E盘 (FAT32)

命令结果如下:
# mount -t ntfs /dev/hda6 /root/mww(失败)
mount: wrong fs type, bad option, bad superblock on /dev/hda6,
       or too many mounted file systems
# mount -t vfat /dev/hda6 /root/mww(失败)
mount: wrong fs type, bad option, bad superblock on /dev/hda6,
       or too many mounted file systems
# mount -t vfat /dev/hda5 /root/mww(失败)
mount: wrong fs type, bad option, bad superblock on /dev/hda5,
       or too many mounted file systems
# mount -t ntfs /dev/hda5 /root/mww(成功)
# umount -t ntfs /dev/hda5 /root/mww

arzon 发表于 2005-12-18 12:26:31

VFAT只表示FAT32
你可能是把FAT32支持编译成模块了或者压根没编译进去
检查一下吧
页: [1]
查看完整版本: 2.6.14支持 FAT32文件系统吗