Centos 7 强制断电后无法启动

Centos 7 强制断电后无法启动

我不得不拔掉电源插头来关闭计算机。现在 Centos 7 启动时仅要求Emergency mode我检查 `journalctl -xb'。

里面有一些红线,例如:

  • Failed to mount /boot.efi
  • Failed to mount RPC Pipe File System.

我怎样才能修复所有这些以便能够正确启动?还可以信赖吗?我应该重新安装它吗?

当我尝试时systemctl default,我得到Authorization not available. Check if polkit service is running or see debug message or more information.

答案1

jsbillings 感谢您的帮助!

  • Centos 7 只在Emergency mode
  • systemctl --failed显示/boot/efi分区无法安装,因为vfat未知。

解决方案:

  1. fsck /dev/nvme0n1p1清除EFI分区的错误位
  2. modprobe vfat没用
  3. 完成depmod -a并修复重新启动systemctl reboot后,我现在可以正确启动。

相关内容