菜鸟问题:怎么加载FAT的分区

菜鸟问题:怎么加载FAT的分区

我用了mount -t vfat/dev/h** mnt/c
为什么没有成功呀???
要不要先在mnt下面建一个c的文件夹??
是的。
mount -t vfat /dev/h**(要指面主题的分区) /mnt/c
-t 是什么参数阿?
[root@luyiyin root]# mount -t vfat/deve/e** mnt/c
Usage: mount -V                 : print version
       mount -h                 : print this help
       mount                    : list mounted filesystems
       mount -l                 : idem, including volume labels
So far the informational part. Next the mounting.
The command is `mount [-t fstype] something somewhere'.
Details found in /etc/fstab may be omitted.
       mount -a [-t|-O] ...     : mount all stuff from /etc/fstab
       mount device             : mount device at the known place
       mount directory          : mount known device here
       mount -t type dev dir    : ordinary mount command
Note that one does not really mount a device, one mounts
a filesystem (of the given type) found on the device.
One can also mount an already visible directory tree elsewhere:
       mount --bind olddir newdir
or move a subtree:
       mount --move olddir newdir
A device can be given by name, say /dev/hda1 or /dev/cdrom,
or by label, using  -L label  or by uuid, using  -U uuid .
Other options: [-nfFrsvw] [-o options].
For many more details, say  man 8 mount .
[root@luyiyin root]# mount -t vfat/dev/h** mnt/c

这是怎么回事?
偶是新手,大家教教我阿!
谢谢
$root
#mkdir /mnt/c
#mount /dev/hda1 /mnt/c
#cd /mnt/c
#ls
直接mount,不用加类型了,Linux自动识别,

mount /dev/hda /mnt/c
:-)  :-)
可以分区载入吗?
怎么办呢?
[root@luyiyin mnt]# mount /dev/hda1 /mnt/c
mount: mount point /mnt/c does not exist
[root@luyiyin mnt]# mount /dev/hda /mnt/c
mount: you must specify the filesystem type
[root@luyiyin mnt]#
还是不行啊!
[root@luyiyin mnt]# mount /dev/hda1 /mnt/e
mount: fs type ntfs not supported by kernel
[root@luyiyin mnt]# mount /dev/hda2 /mnt/e
mount: error while guessing filesystem type
mount: you must specify the filesystem type
[root@luyiyin mnt]# mount /dev/hda3  /mnt/e
/dev/hda3: 无效的参数
mount: you must specify the filesystem type
[root@luyiyin mnt]# mount /dev/hda4 /mnt/e
/dev/hda4: 无效的参数
mount: you must specify the filesystem type
[root@luyiyin mnt]# mount /dev/hda /mnt/e
mount: you must specify the filesystem type
[root@luyiyin mnt]# mount /dev/hda /mnt/e
mount: you must specify the filesystem type
[root@luyiyin mnt]# mount /dev/hda1 /mnt/e
mount: fs type ntfs not supported by kernel
[root@luyiyin mnt]# mount /dev/hda2 /mnt/e
mount: error while guessing filesystem type
mount: you must specify the filesystem type
[root@luyiyin mnt]# mount /dev/hda /mnt/e
mount: you must specify the filesystem type
[root@luyiyin mnt]# mount /dev/hda /mnt/e
喷死!
谢谢各位老大,我的分区加入了~~但是只加入一个FAT32
要加NTFS应怎么做?
不少发行版都没有把装载ntfs的功能编译成模块,也就是说要再编译一次内核,把相关的功能加进去.去找找编译内核的文章看看.