|
|
发表于 2008-4-19 23:11:37
|
显示全部楼层
#fdisk -l
可以看到那些fat32分区。比如当你的fat32分区是/dev/sda1,你想把它挂载在/mnt时,
#mount -t fat32 /dev/sda1 /mnt -o iocharset=utf8,codepage=cp936,umask=000
然后你到/mnt下面就能看到fat32分区的东西了。
如果写在/etc/fstab里面,可以在开机时自动挂载。具体的做法是,在文件/etc/fstab中添加这样一行:
/dev/sda1 /mnt fat32 iocharset=utf8,codepage=cp936,umask=000 0 0 |
|