Centos7 使用 ntfs-3g 挂载 NTFS
Centos 默认是不支持 NTFS 格式的磁盘的。如果要加载只能借助第三方软件 ntfs-3g 了。
有两种方法实现该功能
为 yum 命令添加源,然后使用yum下载
到官网下载,然后手动编译安装
安装方式如下:
添加 yum.repos
自带的yum源没有这个软件,要用第三方的软件源,这里我用的是阿里的epel,切换到系统yum目录并下载阿里的。
cd /etc/yum.repos.d/
wget http://mirrors.aliyun.com/repo/epel-7.repo
通过 yum list ntfs*
命令可以查看有哪些可用的软件
然后通过 yum -y install ntfs-3g
安装软件
通过官网下载
地址为 https://www.tuxera.com/community/open-source-ntfs-3g/
tar zxvf ntfs-3g_ntfsprogs-2017.3.23.tgz
cd ntfs-3g_ntfsprogs-2017.3.23
./configure
make
make install
————————————————
via:https://blog.csdn.net/chy555chy/article/details/89222686