由于某些内核问题,无法启动 Ubuntu

由于某些内核问题,无法启动 Ubuntu

我的 PC 直到昨天都运行良好。今天,当我打开 PC 时,操作系统甚至没有启动。我等了 2-3 分钟,但什么也没发生。我按下了重启按钮。现在出现了 GRUB 菜单,我选择了 Ubuntu 选项。操作系统启动了,出现了 Ubuntu 徽标,但没有出现锁定屏幕。它只是在加载。我等了几分钟。什么也没发生。我也尝试了 REISUB,但没有用。我再次按下了重启按钮。出现了 GRUB 菜单,我选择了 Ubuntu。这次我收到此错误:

内核错误

我只使用 Ubuntu(不是双启动)。我的操作系统是 Ubuntu 20.04。我昨天没有修改任何重要的系统文件。

我该怎么修复我的电脑?

输出sudo umount /dev/sda

umount: /dev/sda: not mounted.

输出sudo fsck /dev/sda

fsck from util-linux 2.34
e2fsck 1.45.5 (07-Jan-2020)
ext2fs_open2: Bad magic number in super-block
fsck.ext2: Superblock invalid, trying backup blocks...
fsck.ext2: Bad magic number in super-block while trying to open /dev/sda

The superblock could not be read or does not describe a valid ext2/ext3/ext4
filesystem.  If the device is valid and it really contains an ext2/ext3/ext4
filesystem (and not swap or ufs or something else), then the superblock
is corrupt, and you might try running e2fsck with an alternate superblock:
    e2fsck -b 8193 <device>
 or
    e2fsck -b 32768 <device>

Found a gpt partition table in /dev/sda

答案1

文件系统检查

检查/修复您的文件系统...

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

虚拟硬盘

您的 ramdisk 文件可能已损坏。

在恢复模式中...

  • 启动到 GRUB 菜单

    • 选择附加选项

      • 选择恢复模式

        • 选择根访问

sudo update-initramfs -c -k $(uname -r)

相关内容