CentOS 7にexFATハードドライブをマウントする

CentOS 7にexFATハードドライブをマウントする

私のサーバーでCentOS 7を実行しています。できないので、RPMを介してインストールyum install fuse-exfat exfat-utilsしました。exfat-utils 1.0.1-1.el7.nuxfuse-exfat 1.0.1-1.el7.nux

6TB容量のWD Greenハードドライブがあります。私の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

ベストアンサー1

おすすめ記事