原作者地址:linux 开机错误 Entering emergency mode. Exit the shell to continue._whatday的博客-CSDN博客
虽然没怎么看懂,但是解决了,原作者牛逼
CentOS虚拟机断电或强制关机,再开机出现问题:
找出问题出现在哪:
这里的 journalctl 是查看系统的日志信息;直接输入此命令查看,日志内容可能很多,快速翻页或者直接定位到最新的日志信息,发现有标红的,说明此处出现错误。
错误原因:
failed to mount /sysroot.(无法挂载/ sysroot。)
Dependency failed for Initrd root File System.(Initrd根文件系统的依赖关系失败。)
Dependency failed for Reload configuration from the Real Root.(从实际根目录重新加载配置的依赖性失败。)
解决方法:
输入命令:xfs_repair -v -L /dev/dm-0
-L 选项指定强制日志清零,强制xfs_repair将日志归零,即使它包含脏数据(元数据更改)。
标签:CentOS,虚拟机,断电,failed,开机,强制,日志 From: https://www.cnblogs.com/whc1/p/17616512.html