1、安装fuse
输入命令:yum install fuse ,这是最轻松的办法,让yum搞定一切。
当然也可自己动手编译安装,方法:到官网http://fuse.sourceforge.net/下载fuse安装包
#tar -zxvf fuse-2.7.6.tar.gz
#cd fuse-2.7.6
#./configure
#make && make install
#modprobe fuse
2、安装ntfs-3g
到官网http://www.tuxera.com/下载ntfs-3g安装包。我的下载地址是:
http://tuxera.com/opensource/ntfs-3g-2011.1.15.tgz
#tar -zxvf ntfs-3g-2010.5.22.tgz
#cd ntfs-3g-2010.5.22
#./configure
#make && make install
3、挂载ntfs格式的移动硬盘
#mount -t ntfs-3g /dev/sde1 /mnt --挂载命令
#df -k -h --查看挂载
#umount /mnt --卸载
转载于:https://blog.51cto.com/wuhaoshu/488320