每次启动我都需要手动运行 fsck /dev/mapper/ubuntu--vg-root

每次启动我都需要手动运行 fsck /dev/mapper/ubuntu--vg-root

大家好,每天当我启动我的 ubuntu 18.04 时,它都无法启动并出现以下错误。

(initramfs) exit
/dev/mapper/ubuntu--vg-root contains a file system with errors, check forced.
Inodes that were part of a corrupted orphan linked list found.

/dev/mapper/ubuntu-vg-root: UNEXPECTED INCONSISTENCY; Run fsck MANUALLY.
    (i.e., without -a or -p options)

fsck exited with status code 4.
The root file system on /dev/mapper/ubuntu--vg-root requires manual fsck

当我运行命令时fsck /dev/mapper/ubuntu--vg-root

它解决了错误但是第二天当我启动系统时它再次显示相同的错误并且需要再次运行该命令。

答案1

从 bustbox shell 或 USB 运行 fsck,并使用“-y”选项进行修复。您的根文件系统不得挂载。应该是:

代码: fsck -y /dev/mapper/mint--vg--root

解决我的问题,解决方案支持https://www.linuxquestions.org/questions/linux-newbie-8/problems-with-root-file-system-4175663569/

相关内容