CenOS 7 Filesystem type ntfs not configration in kernel
出现问题:
error mounting dev/sdb4 at /run/media/cenos/***:Filesystem type ntfs not configration in kernel
CenOS打开NTFS格式的硬盘(优盘),点击出现这个错误
解决办法:
-
1、由于Cenos默认没有ntfs的源,因此要添加源
sudo wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo
-
2、更本地的源
sudo yum update
-
3、安装ntfs-g3,安装之后无需重启就可以使用带(NTFS格式的)优盘或者硬盘。
sudo yum install *ntfs*
对应会安装三个依赖:
-
ntfs-g3
-
ntfs-g3-devel
-
ntfsprogs
在最下方选择y
之后就可以用了
参考文献:https://blog.csdn.net/chy555chy/article/details/113747253