//下載安裝ntfs-3g_ntfsprogs.tgz軟件包進行編譯安裝
tar -zxf ntfs-3g_ntfsprogs.tgz
cd ntfs-3g_ntfsprogs
./configure
make
make install
//查看磁盤
fdisk –l
Device Boot Start End Blocks Id System
/dev/sdb1 * 7486 170667 14686336 7 HPFS/NTFS
//創建掛載點
[root@xuliangwei ~]# mkdir -p /mnt/usb
//使用mount指定ntfs-3g格式掛載
[root@xuliangwei ~]# mount -t ntfs-3g /dev/sdb1 /mnt/usb
//查看ntfs磁盤內文件
[root@xuliangwei ~]# ls /mnt/usb
drivethelife6_net_setup.ext GHO
//使用umount卸載ntfs格式磁盤
[root@xuliangwei ~]# umount -l /dev/sdb1