Linux挂载ntfs格式移动硬盘  需要安装fuse 和ntfs-3g

[root@localhost ~]# rpm -qa |grep fuse
[root@localhost ~]# yum install fuse -y
[root@localhost ~]#  wget
http://tuxera.com/opensource/ntfs-3g_ntfsprogs-2012.1.15.tgz
[root@localhost ~]# tar zxvf ntfs-3g_ntfsprogs-2012.1.15.tgz
[root@localhost ~]# cd ntfs-3g_ntfsprogs-2012.1.15
[root@localhost ntfs-3g_ntfsprogs-2012.1.15]# ./configure
[root@localhost ntfs-3g_ntfsprogs-2012.1.15]# make
[root@localhost ntfs-3g_ntfsprogs-2012.1.15]# make install
[root@localhost ntfs-3g_ntfsprogs-2012.1.15]# fdisk -l
[root@localhost ntfs-3g_ntfsprogs-2012.1.15]# mkdir /mnt/windows
[root@localhost ntfs-3g_ntfsprogs-2012.1.15]# mount –t ntfs-3g /dev/sda1 /mnt/windows
设置开机启动

[root@localhost ntfs-3g_ntfsprogs-2012.1.15]# vi /etc/fstab
/dev/sda1      /mnt/windows     ntfs-3g    defaults    0 0