Linux install NTFS-3G module to support NTFS file system mounts
Required Packages
Fuse-2.9.3.tar.gz
Ntfs-3g_ntfsprogs-2011.4.12.tgz
Step1. Decompression fuse-2.9.3.tar.gz
TAR-ZXVF fuse-2.9.3.tar.gz
Step2. Compiling and installing fuse
CD fuse-2.9.3
./configure
./make
./make Install
Errors that may occur
Cofigure:error:c compiler cannot create executables
Reference: Http://askubuntu.com/questions/347466/configure-error-c-compiler-cannot-create-executables
Workaround:
export PATH="/usr/bin:$PATH"
It looks like you had a non-standard version of the GNU linker in ld
your /usr/local/bin
directory (possibly installed from SOU RCE), and your PATH environment variable is set such the system finds that version before the ' System ' version (which Should is at /usr/bin/ld
). If you want to build using the standard system versions of the build tools, you'll need to adjust your PATH env Ironment variable so it searches /usr/bin
ahead of/usr/local/bin
If you want to permanently fix your PATH variable, you'll need to find out where you set it originally-probably R ~/.BASHRC file, but other locations is possible. Alternatively, if you just need a temporary the fix for this build, you could try
export PATH="/usr/bin:$PATH"
In the terminal before executing the./configure
Step3. Decompression ntfs-3g_ntfsprogs-2011.4.12.tgz
TAR-ZXVF ntfs-3g_ntfsprogs-2011.4.12.tgz
Step4. Installing NTFS-3G
CD ntfs-3g_ntfsprogs-2011.4.12
./configure
./make
./make Install
Step5. Test
View the disk that is NTFS, and then mount it, assuming that/DEV/SDC1 is the NTFS file system
Fdisk-l
Mount the NTFS file system device for/DEV/SDC1
Mkdir/mnt/hdd
Mount-t NTFS-3G/DEV/SDC1/MNT/HDD
If the mount succeeds, the installation is correct.
redhat6.5 installing ntfs-3g RPM to support NTFS file system mounts