fdisk -l
Disk /dev/sdb: 500.0 GB, 500074283008 bytes
255 heads, 63 sectors/track, 60797 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/sdb1 * 1 60798 488352768 7 HPFS/NTFS
下载 ntfs-3g 包
http://www.tuxera.com/community/open-source-ntfs-3g/
https://tuxera.com/opensource/ntfs-3g_ntfsprogs-2015.3.14.tgz
wget http://tuxera.com/opensource/ntfs-3g_ntfsprogs-2013.1.13.tgz
或者 通过 ftp 来中转。
ftp hostname
cd /temp
get ntfs-3g_ntfsprogs-2013.1.13.tgz
安装 ntfs-3g
tar zxf ntfs-3g_ntfsprogs-2013.1.13.tgz
cd ntfs-3g_ntfsprogs-2013.1.13
./configure
提示:You can type now ‘make‘ to build ntfs-3g.
make
make install
CAT /usr/local/share/doc/ntfs-3g/README
挂载ntfs
mkdir /mnt/usb1
mount -t ntfs-3g /dev/sdb1 /mnt/usb1