After inserting the hard disk into the Linux system, the system always prompts: unknown filesystem type 'ntfs 'when you open the hard disk. Some problems have also been encountered when trying the online method.
Pay attention to the operation according to the problem and the correct method to avoid the problem.
1, first install gcc, this is mainly used in the second step we download the source code in the ntfs-3g to provide the editing environment.
Yum-y install gcc
2, followed by installing the ntfs-3g.
Wget http://tuxera.com/opensource/ntfs-3g_ntfsprogs-2013.1.13.tgz
Tar zxvf ntfs-3g_ntfsprogs-2013.1.13.tgz
Ntfs-3g_ntfsprogs-2013.1.13 cd./configuremakemake install
3. Mount the hard disk.
First, create the hanging location:
Mkdir/mnt/window
Ntfs-3g mounted on hard disk (assuming the hard disk to be mounted Is/dev/sdb1)
Mount-t ntfs-3g/dev/sdb1/mnt/window
Unmount command (unmount the hard disk partition of/dev/sdb1)
Umount/dev/sdb1