通常情况下,CentOS 挂载windows分区会出现mount: unknown filesystem type 'ntfs'。要想把NTFS格式的磁盘挂载到CentOS 6.3下面 需要安装第三方的插件ntfs-3g,
一、 源码安装
1.下载源码:
源码地址:https://tuxera.com/opensource/ntfs-3g_ntfsprogs-2017.3.23.tgz
我的百度云分享链接:https://pan.baidu.com/s/1gx6YCuB7SSUnO_hDSu09oA 密码:41r8
*如果有网可以
*[root@cxm u]# wget https://tuxera.com/opensource/ntfs-3g_ntfsprogs-2017.3.23.tgz
2.解压(因为包是tgz格式的,所以要有-z选项)
[root@cxm ~]# ls
ntfs-3g_ntfsprogs-2017.3.23.tgz
[root@cxm ~]# tar -zxvf ntfs-3g_ntfsprogs-2017.3.23.tgz
3.编译安装
[root@cxm ~]# cd ntfs-3g_ntfsprogs-2017.3.23/
[root@cxm ntfs-3g_ntfsprogs-2017.3.23]# ./configure
[root@cxm ntfs-3g_ntfsprogs-2017.3.23]# make && make install
4.挂载、卸载命令
[root@cxm ~]# mount -t ntfs-3g /dev/sdb1 /mnt/test
[root@cxm ~]# umount /dev/sdb1
注意:./configure如果报错
checking for gcc... no
checking for cc... no
configure: error: no acceptable C compiler found in $PATH
See `config.log' for more details.
解决:安装gcc包
yum -y install gcc*
二、 RPM 包安装
1.下载rpm包
下载地址:http://www.rpmfind.net/linux/fedora/linux/development/rawhide/Everything/x86_64/os/Packages/n/ntfs-3g-2017.3.23-4.fc28.x86_64.rpm
我的百度云分享链接:链接:https://pan.baidu.com/s/1P1ZdlTqI7AdDAFyc0-FAFA 密码:d59q
*如果有网可以
2.rpm安装
[root@cxm ~]# rpm -ivh ntfs-3g-2017.3.23-4.fc28.x86_64.rpm --nodeps
3.挂载、卸载命令
[root@cxm ~]# mount -t ntfs-3g /dev/sdb1 /mnt/test
[root@cxm ~]# umount /dev/sdb1
三、 yum安装
1.更换阿里epel源(本身并不带ntfs-3g的yum)
[root@cxm ~]# wget [http://mirrors.aliyun.com/repo/epel-7.repo](http://mirrors.aliyun.com/repo/epel-7.repo)
2.yum安装
[root@cxm ~]# yum -y install ntfs-3g
3.挂载、卸载命令
[root@cxm ~]# mount -t ntfs-3g /dev/sdb1 /mnt/test
[root@cxm ~]# umount /dev/sdb1