mount -t ntfs /dev/hda* -o iocharset=utf8
用cat /etc/fstab 看看有没有加载分区,如果没有,可以修改fstab文件,把分区加上。
Ubuntu7.10默认就支持NTFS分区的读写,可是不完美,对NTFS分区下的中文文件支持不好,你会发现找不到中文的文件。
解决方法是在终端输入:
sudo apt-get -y --force-yes install ntfs-3g
sudo apt-get -y --force-yes install ntfs-config
[ -x /usr/bin/ntfs-3g ] && sudo ln -sf /usr/bin/ntfs-3g /sbin/mount.ntfs
gksudo ntfs-config & set v
然后全选上
不能读写的问题
一种方法是在终端输入:
sudo mount -t ntfs-3g /dev/sda1 /media/sda1 -o force
另一种方法是:
add the option to the relevant row in the /etc/fstab file:
/dev/sda1 /media/sda1 ntfs-3g defaults,force 0 0