答案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