我不得不拔掉电源插头来关闭计算机。现在 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
未知。
解决方案:
fsck /dev/nvme0n1p1
清除EFI分区的错误位modprobe vfat
没用- 完成
depmod -a
并修复重新启动systemctl reboot
后,我现在可以正确启动。