What’s described here is mounting an NTFS drive with NTFS-3G. First, make sure your Linux system already has GCC installed, otherwise the source package can’t be compiled.
Enter the command yum -y install gcc
Create the www directory under mnt
Step two, download the NTFS-3G dependency software. FUSE download address http://sourceforge.net/projects/fuse/files/fuse-2.X/2.9.0/fuse-2.9.0.tar.gz/download you can pick the version yourself
Installation
1, Unpack command tar -xvzf fuse-2.9.0.tar.gz
2, Copy cd fuse-2.9.0
3, Install ./configure && make && make install
Step three, install the NTFS-3G driver. Download address http://tuxera.com/opensource/ntfs-3g\_ntfsprogs-2014.2.15.tgz tar -xvzf ntfs-3g_ntfsprogs-2014.2.15.tgz cd ntfs-3g_ntfsprogs-2014.2.15
./configure && make && make install
Step four, mount the NTFS-format drive mount -t ntfs-3g /dev/sda1 /mnt/www
Auto-mount: fdisk -l gives you the drive information; generally sda1 is the C drive and so on, sdb1 is a removable drive. vi /etc/fstab and append at the end /dev/sda6 /mnt/www/d ntfs-3g defaults,umask=000 0 0 /dev/sda5 /mnt/www/d ntfs-3g defaults,umask=000 0 0 /dev/sdb6 /mnt/www/d ntfs-3g defaults,umask=000 0 0

