|
|
|
| 企业建站平台西安互联数据中心 2008-08-18 09:02:49 作者:SystemMaster
来源: 文字大小:[大][中][小] |
Linux系统不能启动,出现:
An erron accurred during the file systim check
Doopping you to a shell ;the systim will reboot
when you leave the shell give root password for aminleanor or type control-d for normal startup
这是因为文件系统检查的时候,发现了必须人工干预的错误,因此必须输入root密码,进入单机状态,
进入以后,运行:
fsck /
检查根区,如果问一些问题,一般情况都回答y,如果问得非常频繁,可以加上-y参数:
fsck -y /
这样会回答所有问题为y。
检查完/区之后,再一次检查其他分区,如:
fsck -y /var
fsck -y /usr
fsck -y /www
等。
检查完之后,输入:
exit
退出单机模式,服务器就重新启动,这次应该能够启动了。
| |
|