在 CentOS 7 上挂载 exFAT 硬盘

在 CentOS 7 上挂载 exFAT 硬盘

我的服务器上运行的是 CentOS 7。我不能yum install fuse-exfat exfat-utils,所以我通过 RPM 安装exfat-utils 1.0.1-1.el7.nuxfuse-exfat 1.0.1-1.el7.nux

我有一块 WD Green 硬盘,容量为 6 TB。我在 PC(Windows)上将其格式化为 exFAT,并在其中复制了一些文件。我通过 docker 将它连接到 CentOS 服务器,我可以通过以下方式找到它fdisk -l

Disk /dev/sdb: 6001.2 GB, 6001175126016 bytes, 11721045168 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk label type: dos
Disk identifier: 0x00000000

Device Boot      Start         End      Blocks   Id  System
/dev/sdb1               1  4294967295  2147483647+  ee  GPT

但我用谷歌搜索的所有方法都无法安装它。

[root@www ~]# mount /dev/sdb /media/wd_green
mount: mount /dev/sdb on /media/wd_green failed: Function not implemented
[root@hwww ~]# mount -t exfat -o uid=plex,gid=nogroup /dev/sdb /media/wd_green
mount: failed to parse mount options
[root@www ~]# mount.exfat /dev/sdb /media/wd_green
FUSE exfat 1.0.1
ERROR: exFAT file system is not found.

我还尝试了所有带有 的命令sdb1,但没有任何好的输出。我应该怎么做才能安装它?或者我应该等待 CentOS 7 的官方 exFAT 支持吗?任何帮助,将不胜感激!

更新:

[root@www ~]# parted /dev/sdb print
Model: JMicron Disk (scsi)
Disk /dev/sdb: 6001GB
Sector size (logical/physical): 512B/512B
Partition Table: gpt
Disk Flags: 

Number  Start   End     Size    File system  Name                          Flags
 1      17.4kB  134MB   134MB                Microsoft reserved partition  msftres
 2      135MB   6001GB  6001GB               Basic data partition

相关内容