|
原贴:http://www.ubuntuforums.org/showthread.php?t=217009&highlight=ntfs
一些测试结果:http://www.ubuntuforums.org/showthread.php?t=217009&page=4
1. 添加源- gksu gedit /etc/apt/source.list
复制代码
加入以下内容:- #ntfs-3g & fuse-2.5 repo:
- deb http://flomertens.keo.in/ubuntu/ dapper main
- deb-src http://flomertens.keo.in/ubuntu/ dapper main
复制代码
安装:
- sudo apt-get update
- sudo apt-get install ntfs-3g
复制代码
2.配置。先找出ntfs分区- sudo fdisk -l | grep NTFS
复制代码
修改fstab
加入ntfs分区条目- /dev/<your partition> /media/<mount point> ntfs-3g silent,umask=0,locale=en_US.utf8 0 0
复制代码
当然/media下的挂载点要建好先- sudo mkdir /media/<the name you want>
复制代码
locale的选项可按需要更改,参考/var/lib/locales/supported.d/local文件,看支持什么locale。
3.设置开机加载fuse
在文件里加入fuse字样。
简单吧!
如果想马上测试一下:- sudo modprobe fuse
- sudo umount -a
- sudo mount -a
复制代码
4.NTFS USB设备。建议不要用fstab。
安装ntfs-3g-nautilus-tools:
设置- nautilus-script-manager enable unmount_ntfs-3g
- nautilus-script-manager enable mount_with_ntfs-3g
复制代码
挂载,右击 > nautilus-script > mount_with_ntfs-3g。
卸载,右击 > nautilus-script > unmount_ntfs-3g。 |
|