Linux下的mount命令可以装载FAT32分区格式Windows分区,但是如何才能在系统启动时自动装载呢?如何解决烦人的中文问题呢?如何解决普通用户(非root)也要自由读写Windows分区内容的问题呢?
系统启动后执行下面命令可挂载windows分区:
mount -t vfat -o iocharset=gb2312 /dev/hda5 /mnt/d
mount -t vfat -o iocharset=gb2312 /dev/hda6 /mnt/e
mount -t vfat -o iocharset=gb2312 /dev/hda7 /mnt/f
但是问题是,Linux系统启动时不能动态挂载分区,而且分区中的中文显示也不正常,普通...[ 查看全文 ]