我已经尝试修复这个问题好几天了,但都没有成功,而且我在网上也没有找到同样的问题。供您参考,此帖子与上一个帖子有链接:分区被检测为 /dev/sdb,无标识符
因此存在这样的问题:我有一个没有任何分区的硬盘(由于我的错误,我在整个磁盘而不是分区上创建了一个 fs。虽然它可以工作并且不是问题,但我还是保留了这种配置)
最近我尝试使用非官方实用程序从 Windows 读取该磁盘,但它在磁盘开头创建了一个 Windows 分区,从而损坏了我的 fs。
我所做的是删除此部分(不格式化),然后运行
sudo fsck.ext4 -yf /dev/sdb
此命令似乎修复了我的磁盘,然后我就可以挂载并使用它了。但在下次启动时,我需要再次运行它才能挂载我的磁盘。
我发现 gdisk 存在一个问题:
sudo gdisk /dev/sdb
GPT fdisk (gdisk) version 1.0.1
Caution! After loading partitions, the CRC doesn't check out!
Warning! Main partition table CRC mismatch! Loaded backup partition table
instead of main partition table!
Warning! One or more CRCs don't match. You should repair the disk!
Partition table scan:
MBR: protective
BSD: not present
APM: not present
GPT: damaged
****************************************************************************
Caution: Found protective or hybrid MBR and corrupt GPT. Using GPT, but disk
verification and recovery are STRONGLY recommended.
****************************************************************************
Command (? for help): v
Problem: The CRC for the main partition table is invalid. This table may be
corrupt. Consider loading the backup partition table ('c' on the recovery &
transformation menu). This report may be a false alarm if you've already
corrected other problems.
Identified 1 problems!
我找不到如何修复它,所以我现在来这里。我希望磁盘在启动时自动安装,但目前无法实现。
提前致谢。