安装NTFS-3G支持NTFS读写
ntfs-3g还是beta版, 不是很可靠, 自己掌握吧,
1.安装FUSE
http://nchc.dl.sourceforge.net/sourceforge/fuse/fuse-2.6.0.tar.gz
#或到官方网站下寻找最新版 http://fuse.sourceforge.net/
tar xxxx && cd fusexxx && ./configure && make && make install
2.安装ntfs-3g
http://mlf.linux.rulez.org/mlf/ezaz/ntfs-3g-20070920-BETA.tgz
或到http://www.linux-ntfs.org/看看有无最新版
tar xxxx && cd ntfs-3gxxx && ./configure && make && make install
3.挂ntfs分区,
ntfs-3g /dev/hda1 /mnt/tmp/ #只是例子
Usage
If there was no error during installation then the NTFS volume can be mounted in read-write mode for everybody as follows. Unmount the volume if it had already been mounted, replace /dev/hda1 and /mnt/windows, if needed.
ntfs-3g /dev/hda1 /mnt/windows
You may also need to set the 'locale' option to make all file names with national characters visible. Replace the below zh_CN.utf8 with the appropriate setting.
ntfs-3g /dev/hda1 /mnt/windows -o locale=zh_CN.utf8
Please see the ntfs-3g manual page for more options and examples. You can also make NTFS to be mounted during boot by adding the following line to the end of the /etc/fstab file:
/dev/hda1 /mnt/windows ntfs-3g defaults 0 0
Last modified at: Wednesday, January 10th, 2007 01:05:31 am
Trackback URL: http://blog.zhangjianfeng.com/article/482/trackback
Tags: NTFS-3G, NTFS读写, 安装





















5 Responses to “安装NTFS-3G支持NTFS读写”