fdisk -l
显示音量,所以看起来好像已连接,但当我按照以下步骤操作时
echo "/dev/xvdg /vol2 xfs noatime 0 0" | sudo tee -a /etc/fstab
sudo mkdir /vol2
sudo mount /vol2
我得到了错误
mount: wrong fs type, bad option, bad superblock on /dev/xvdg,
missing codepage or helper program, or other error
In some cases useful info is found in syslog - try
dmesg | tail or so
当我检查 dmesg 时,我看到
XFS: Filesystem xvdg has duplicate UUID - can't mount
我该怎么办?
答案1
不使用 UUID 进行挂载(短期解决方案):
mount -o nouuid DEVICE MOUNT_POINT
或者为设备生成新的 UUID,然后正常挂载:
xfs_admin -U generate DEVICE
(顺便说一下,这是第一个 Google 搜索结果。XFS 文件系统存在重复的 UUID 问题)