CentOS启动报错Failed to mount /sysroot解决方法
CentOS系统启动时出现Failed to mount /sysroot错误,一般是主机文件系统损坏引起的,可使用xfs-repair命令进行修复
1.执行命令
xfs_repair -v /dev/dm-0
2.重启主机
reboot
注:
如xfs_repair -v /dev/dm-0命令无效,可添加参数L
示例:
xfs_repair -v -L /dev/dm-0
解释:
-L参数(-L:强制清空日志,包括元数据更改)此参数可能会丢失文件系统元数据,慎用,使用之前建议先备份元数据。
参考:
https://bbs.qunyingkeji.com/1783/
https://blog.csdn.net/u012158332/article/details/85207357