centos支持挂载ntfs简单方法

环境 Centos6.4 默认是没有NTFS支持的 需要安装一个驱动那就是NTFS-3G


NTFS-3G下载地址:http://www.tuxera.com/community/ntfs-3g-download/


下面是安装步骤
步骤1:tar -zxvf ntfs-3g_ntfsprogs-2013.1.13.tgz 
步骤2:cd ntfs-3g_ntfsprogs-2013.1.13
步骤3:./configure
步骤4:make
步骤5:make install
步骤6:重启
步骤7:mount -t ntfs-3g  /dev/sdb4 /mnt/ntfs
其中/dev/sdb4为要挂载的文件系统(分区),/mnt/ntfs为挂载点;

你可能感兴趣的:(centos)