When there is no kernel support package for NTFS, mount the NTFS removable hard disk in the following way
I. Download the required source code
Fuse Latest Version official website: http://sourceforge.net/projects/fuse/files/fuse-2.X/2.8.3/fuse-2.8.3.tar.gz/download
NTFS-3G Latest Version official website:http://www.tuxera.com/opensource/ntfs-3g-2010.10.2.tgz
Two. Install the source code
We recommend that you read the install and Redeme documentation with detailed installation methods and parameter descriptions before installing.
1. Install fuse
[[Email protected] ~] #tar –ZXVF fuse-2.8.3.tar.gz
[[Email protected] ~] #cd fuse-2.8.3
[Email protected] ~]#./configure
[[Email protected] ~] #make && make install
[[Email protected] ~] #modprobe fuse
2. Installing ntfs-3g
[[Email protected] ~] #tar –ZXVF ntfs-3g-2010.3.6.tgz
[[Email protected] ~] #cd ntfs-3g-2010.3.6
[Email protected] ~]#./configure
[[Email protected] ~] #make && make install
three. Mount NTFS partitions
Mount-t ntfs-3g/dev/sde1/mnt/
This article from "Dream Three" blog, declined reprint!
Linux mount NTFS file system tips