这两天服务器出了问题了,提示如下:
unexpected inconsistency;RUN fsck MANUALLY
An error occurred during the filesystem check
Propping you to shell the system will reboot
when you leave the shell
Give root password for mantennance
An error occurred during the filesystem check
Propping you to shell the system will reboot
when you leave the shell
Give root password for mantennance
从网上找了一些教程,立马就解决了,过程如下:
按照系统提示,输入root用户的密码,进入命令行,
1。 输入命令,查找root所在分区是多少:
mount |grep "on/"
根据结果找到root所在分区,我的是/dev/sda2
2. 然后用命令fsck修复
fsck -y /dev/sda2
注:
-y 选项指定检测每个文件是自动输入yes
3。 fsck修复boot分区
fsck -y /dev/sda1
3。reboot重启ok
谢谢如下博文”
转载于:https://blog.51cto.com/naonao/704092
本文详细介绍了如何解决服务器出现的意外不一致性问题,通过手动执行fsck命令修复文件系统,最终成功重启系统。操作步骤包括:输入root用户密码进入命令行,查找root所在分区并使用fsck命令进行修复。
1763

被折叠的 条评论
为什么被折叠?



