http://blog.163.com/[email protected]/blog/static/41230911201062165035335/
1. Download the source installation package
# wget Http://downloads.sourceforge.net/project/fuse/fuse-2.X/2.7.4/fuse-2.7.4.tar.gz?use_mirror=ncu
# wget Http://www.ntfs-3g.org/ntfs-3g-2009.4.4.tgz
2. Install the downloaded source package
# TAR-ZXF Fuse-2.7.4.tar.gz
#./configure--prefix=/usr/local/fuse-2.7.4
# make
# make Install
# TAR-ZXF Ntfs-3g-2009.4.4.tgz
#./configure--prefix=/usr/local/ntfs-3
# make
# make Install
3. Check if the fuse module is loaded into the system
#/sbin/modprobe Fuse
[No output is present; otherwise an error message will be reported]
# Cat/proc/filesystems
Nodev SELINUXFS
Ext3
Nodev Rpc_pipefs
Nodev AutoFS
Ntfs
Nodev Fuse
Fuseblk
Nodev Fusectl
[Fuse should appear in the list]
4. View the number of the NTFS system
#/sbin/fdisk-l |grep NTFS
/DEV/SDC1 1 60801 488384001 7 hpfs/ntfs
5. Mount the NTFS file system
# mkdir-p/mnt/ntfs/
# mount-t ntfs-3g/dev/sdc1/mnt/ntfs/
END. You should have successfully mounted an NTFS system that can be read and written by all users and can be viewed using the Mount command.
"reprint" Linux system mount NTFS file system