centos 出现”Error mounting: mount:unknown filesystem type 'ntfs'“

如题 probelm:


解决方法:通过下载ntfs-3g(http://www.tuxera.com/community/ntfs-3g-download/)来解决。


下载之后编译安装 ntfs-3g:

 # tar zxvf  ntfs-3g-2014.2.15.tgz

 # cd ntfs-3g-2014.2.15

 #./configure

 #make

 #make install

使用方法是:首先查看需要挂在的硬盘,命令:fdisk -l  (需要root权限)

挂载:

mount -t ntfs-3g/dev/sda1(挂载的分区) /mnt/udisk(挂载的位置)(挂载的位置由使用者自己决定)

卸载:

umount /dev/sda1 /mnt/udisk


Reference:

1)http://www.tuxera.com/community/ntfs-3g-download/  

2)http://www.hx95.com/Article/Tech/201203/53042.html




你可能感兴趣的:(centos 出现”Error mounting: mount:unknown filesystem type 'ntfs'“)