损坏的 /dev/sda2

损坏的 /dev/sda2

通常,当我启动系统时,我会进入 Busybox initramfs 屏幕。我必须执行以下操作:

fsck /dev/sda2

让它恢复秩序(几个修复选项,如缺少 inode来吧。我应该记下错误,也许下次我会这样做并在这里更新)。其他时候,这种情况发生在我登录时。所有文件系统都变为只读(apt 更新返回错误) 然后再次文件系统检查必须呼叫救援。这种情况大多发生在我使用 Skype 之后,但这可能无关紧要。我的硬盘出现故障了吗?(SMART 状态显示正常)。还是其他原因?

附言:我最近也切换到了 Ubuntu 20.04,之前没有发生过这种情况。

答案1

您的 BIOS 是最新的。

如果你的“后面板轻微撞击”计算机运行时发生此问题,您的硬盘可能出现轻微/严重磁头损坏。您有 CRC 和写入错误。您的硬盘可能存在问题,或者 SATA 驱动器电缆存在问题(可能需要重新安装或更换)。

目前还不清楚为什么它会在此时关机。可能有其他问题。

首先,我们将检查文件系统,然后对磁盘进行坏块检查。

文件系统检查

  • 以“试用 Ubuntu”模式启动 Ubuntu Live DVD/USB
  • terminalCtrl+ Alt+打开窗口T
  • 类型sudo fdisk -l
  • 识别“Linux 文件系统”的 /dev/sdXX 设备名称
  • 输入sudo fsck -f /dev/sda2,替换sdXX为您之前找到的数字
  • fsck如果有错误则重复命令

坏块

注意:不要中止坏块扫描!

注意:不要对 SSD 造成坏块

注意:请先备份您的重要文件!

注意:这将花费很多小时

注意:您可能面临硬盘故障

在“尝试 Ubuntu”模式下启动 Ubuntu Live DVD/USB。

terminal...

sudo fdisk -l# 识别所有“Linux 文件系统”分区

sudo e2fsck -fcky /dev/sdXX# 只读测试

或者

sudo e2fsck -fccky /dev/sda2# 非破坏性读写测试(受到推崇的)

-k 很重要,因为它会保存之前的坏块表,并将任何新的坏块添加到该表中。如果没有 -k,您将丢失所有之前的坏块信息。

-fccky 参数...

   -f    Force checking even if the file system seems clean.

   -c    This option causes e2fsck to use badblocks(8) program to do
         a read-only scan of the device in order to find any bad blocks.
         If any bad blocks are found, they are added to the bad block
         inode to prevent them from being allocated to a file or direc‐
         tory.  If this option is specified twice, then the bad block scan
         will be done using a non-destructive read-write test.

   -k    When combined with the -c option, any existing bad blocks in the
         bad blocks list are preserved, and any new bad blocks found by
         running badblocks(8) will be added to the existing bad blocks
         list.

   -y    Assume an answer of `yes' to all questions; allows e2fsck to be
         used non-interactively. This option may not be specified at the
         same time as the -n or -p options.

更新#1:

您需要更换 HDD。

相关内容