CentOS挂载exfat移动硬盘

今日欲用移动硬盘拷贝服务器数据,服务器安装的CentOS7,使用图形界面打开,插上硬盘没反应,查了发现是Linux默认不支持NTFS格式的文件系统,需要安装ntfs-3g,比较方便的做法是用yum,而我们服务器之前是用的本地的yum源,遂改成阿里云的镜像:

cd /etc/yum.repos.d
wget -O CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
yum clean all
yum makecache
(参考CentOS修改各大yum源(centos5,centos6,centos7) - 腾讯云开发者社区-腾讯云 (tencent.com)

然后安装ntfs-3g:

1、添加aliyun的epel源)
wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo2yum 安装ntfs-3g)
yum install ntfs-3g
(3、判断 yum 安装ntfs-3g是否成功 )
yum list installed | grep ntfs-3g
(参考CentOS7 挂载NTFS分区 - 徐传斌 - 博客园 (cnblogs.com)

装好了,还是读不到硬盘显示:

Unable to access “Z”

Error mounting /dev/sdb2 at /run/media/tem/Z: Filesystem type exfat not configured in kernel.

原来硬盘的格式是exfat。。

Then: 

yum install epel-release
rpm -v --import http://li.nux.ro/download/nux/RPM-GPG-KEY-nux.ro
rpm -Uvh http://li.nux.ro/download/nux/dextop/el7/x86_64/nux-dextop-release-0-5.el7.nux.noarch.rpm
yum install exfat-utils fuse-exfat
(参考如何在 CentOS 7 上挂载一个 exFAT 磁盘驱动器 - 腾讯云开发者社区-腾讯云 (tencent.com)

成功。

posted @ 2022-11-13 11:33  BangBro  阅读(1592)  评论(0编辑  收藏  举报