question:
Mount:unknown filesystem type ' NTFS '
This is because NTFS-formatted partitions are not recognized on Redhat.
Solution:
Solved by using ntfs-3g.
Open the ntfs-3g download point http://www.tuxera.com/community/ntfs-3g-download/, download the latest stable to Redhat, and install the following command:
1) Compile and install ntfs-3g:
# ./configure
# Make
# Make Install
2) View device points
[root@localhost ~]# fdisk-l
disk/dev/sda:1000.2 GB, 1000203804160 bytes
255 heads, Sectors/track, 121601 cylinders
Units = Cylinders of 16065 * 8225280 bytes
Sector size (logical/physical): bytes/512 bytes
I/O size (minimum/optimal): bytes/512 bytes
Disk Identifier:0xabff17d4
Device Boot Start End Blocks Id System
/DEV/SDA1 * 1 5100 40965718+ 7 Hpfs/ntfs
/dev/sda2 5101 115074 883366155 f W95 Ext ' d (LBA)
/dev/sda3 115075 121347 50380800 Linux
/DEV/SDA4 121347 121602 2048000 Linux Swap/solaris
/dev/sda5 5101 11967 55159146 7 hpfs/ntfs
/dev/sda6 11968 38738 215038026 7 hpfs/ntfs
/dev/sda7 38739 115074 613168888+ 7 hpfs/ntfs
3 mount NTFS partition command (here is the/dev/sda1 mount to the/mnt directory in the C folder, if the hint does not have a path, you must establish the relevant folder)
[Root@localhost ~]# mount-t ntfs-3g/dev/sda1/mnt/c
================================ above for manual mount, the following is automatically mounted on the boot, very convenient ===========================================
4 VI Modify/etc/fstab file in the last line to join:
/DEV/SDA1/MNT/C ntfs-3g Defaults 0 0
If there are other partitions, also add:/dev/sda5/mnt/d ntfs-3g defaults 0 0
/dev/sda6/mnt/e ntfs-3g Defaults 0 0
/dev/sda7/mnt/f ntfs-3g Defaults 0 0