centos7.1 识别ntfs u盘解决方案


Linux系统需要安装ntfs-3g这个包才能够操作ntfs文件系统,但是CentOS 7默认的安装源中的确没有这个包。因此解决办法有两种:
1 网络安装


安装epel-release:Extra Packages for Enterprise Linux repository configuration

# yum install epel-release
安装epel-release后就可以使用yum命令安装ntfs-3g了
# yum install ntfs-3g

2 本地安装

下载安装包

# wget https://dl.fedoraproject.org/pub/epel/7/x86_64/n/ntfs-3g-2015.3.14-2.el7.x86_64.rpm
# wget https://dl.fedoraproject.org/pub/epel/7/x86_64/n/ntfs-3g-devel-2015.3.14-2.el7.x86_64.rpm
# wget https://dl.fedoraproject.org/pub/epel/7/x86_64/n/ntfsprogs-2015.3.14-2.el7.x86_64.rpm

安装
# rpm -ivh ntfs-3g*.rpm
# rpm -ivh ntfsprogs*.rpm

你可能感兴趣的:(Linux)