Manjaro 无法启动重新挂载根文件系统和内核文件系统

Manjaro 无法启动重新挂载根文件系统和内核文件系统

几天前,我打开了我的 PC,但在启动屏幕上看到了类似的内容;

Failed to start Remount Root and Kernel File Systems.

命令执行后status systemd-remount-fs.service

   ● systemd-remount-fs.service - Remount Root and Kernel File Systems
   Loaded: loaded (/usr/lib/systemd/system/systemd-remount-fs.service; enabled-runtime; vendor preset: disabled)
   Active: failed (Result: exit-code) since Thu 2019-05-16 07:22:48 +00; 3min 38s ago
     Docs: man:systemd-remount-fs.service(8)
           https://www.freedesktop.org/wiki/Software/systemd/APIFileSystems
  Process: 742 ExecStart=/usr/lib/systemd/systemd-remount-fs (code=exited, status=1/FAILURE)
 Main PID: 742 (code=exited, status=1/FAILURE)

May 16 07:22:47 manjaro systemd[1]: Starting Remount Root and Kernel File Systems...
May 16 07:22:48 manjaro systemd-remount-fs[742]: mount: /: can't find UUID=F982-A556.
May 16 07:22:48 manjaro systemd-remount-fs[742]: /usr/bin/mount for / exited with exit status 1.
May 16 07:22:48 manjaro systemd[1]: systemd-remount-fs.service: Main process exited, code=exited, status=1/FAILURE
May 16 07:22:48 manjaro systemd[1]: systemd-remount-fs.service: Failed with result 'exit-code'.
May 16 07:22:48 manjaro systemd[1]: Failed to start Remount Root and Kernel File Systems.

你能帮忙吗?顺便说一句,谢谢你的关注。

答案1

您的/etc/fstab文件中的文件系统条目混淆了。您有类似以下内容的内容:

UUID=F982-A556    /    [...]

第一个问题是,您的系统上根本不存在具有该 UUID 的文件系统。第二个问题是,这种不寻常的 UUID 格式仅来自 FAT16/FAT32 文件系统,因此即使存在,它也完全不适合用作 /(根)文件系统。也许它是一个旧的条目,实际上应该位于 /boot 或 /efi(FAT 更有意义),或者 Manjaro 安装程序在搜索根分区时意外拾取了您的 USB 记忆棒。

无论如何,完全删除此 fstab 条目应该是安全的——启动过程不依赖于它的存在。(根据内核命令行找到根分区。)

相关内容