Ubuntu 16.04 重启时出现 initramfs 错误

Ubuntu 16.04 重启时出现 initramfs 错误

我重启了电脑,没有做任何修改或安装任何软件包,但启动结束时出现了 initramfs 屏幕,我尝试了所有方法,比如fsck从 initramfs 终端运行,但都不起作用。然后我创建了一个 LiveUSB 并启动,然后fsck在驱动器上运行/dev/sda6

但是当我重新启动时,intiramfs 终端再次出现。这个问题在我的操作系统上经常发生,每次我都必须重新安装操作系统。为什么会发生这种情况以及如何永久修复?我的操作系统是 Ubuntu 16.04。

启动错误

答案1

1)请看看这是否有帮助:启动时进入 (initramfs) prompts/busybox

上述帖子的链接上说:Ubuntu 启动时提示 Initramfs:当您在 NTFS Windows 分区上安装了 Ubuntu 并且 Windows 被错误关闭时,可能会发生这种情况。
解决方案:

(initramfs)退出

你可能会得到类似这样的结果——

/dev/sda1:意外... fsck 已退出...。/dev/sda1 上的根文件系统需要手动 fsck

BusyBox v1.22……

(initramfs)

… 意思是等等等等。

现在使用以下命令

(initramfs)fsck /dev/sda1

(请注意 /dev/ 是常量。sda1 可以从上面的行中得知 — /dev/sda1 上的根文件系统需要手动 fsck)

在这里将 sda1 改为你的

2)另一篇帖子Ubuntu 16.04/17.10 启动到 Initramfs

建议此解决方案:

要检查 Ubuntu 分区上的文件系统...

boot to the GRUB menu
choose Advanced Options
choose Recovery mode
choose Root access
at the # prompt, type sudo fsck -f /
repeat the fsck command if there were errors
type reboot

如果由于某种原因您无法执行上述操作...

boot to a Ubuntu Live DVD/USB
start gparted and determine which /dev/sdaX is your Ubuntu EXT4 partition
quit gparted
open a terminal window
type sudo fsck -f /dev/sdaX # replacing X with the number you found earlier
repeat the fsck command if there were errors
type reboot

相关内容