当前位置: 技术问答>linux和unix
急!急!急!由于突然断电,导致系统文件出错,不能够正常引导?!!!!
来源: 互联网 发布时间:2014-11-21
本文导语: 由于突然断电,导致系统文件出错:(报错如下) checking root filesystem / contains a file with errors,check forced /: unattached inode 133435 /:unexpected inconsistency;run fsck manvally (i.e.,without -a or -p options) ...
由于突然断电,导致系统文件出错:(报错如下)
checking root filesystem
/ contains a file with errors,check forced
/:
unattached inode 133435
/:unexpected inconsistency;run fsck manvally
(i.e.,without -a or -p options)
[failed]
***an error occurred during th file system check
***dropping you to a shell; the system will reboot
***when you leave the shell
give root password for maintenance
(or type control-D for normal startup)
我输入root密码后显示如下:
(repair filesystem)1#
请问大家我该如何是好???
checking root filesystem
/ contains a file with errors,check forced
/:
unattached inode 133435
/:unexpected inconsistency;run fsck manvally
(i.e.,without -a or -p options)
[failed]
***an error occurred during th file system check
***dropping you to a shell; the system will reboot
***when you leave the shell
give root password for maintenance
(or type control-D for normal startup)
我输入root密码后显示如下:
(repair filesystem)1#
请问大家我该如何是好???
|
你先引导进单用户模式,用linux 1或init 1
进入后密码可以随便改,同时fsck devname就可以用了,但有一些参数。
下面时详细参考:
filesys : device 名称(eg./dev/sda1),mount 点 (eg. / 或 /usr)
-t : 给定档案系统的型式,若在 /etc/fstab 中已有定义或 kernel 本身已支援的则不需加上此参数
-s : 依序一个一个地执行 fsck 的指令来检查
-A : 对/etc/fstab 中所有列出来的 partition 做检查
-C : 显示完整的检查进度
-d : 列印 e2fsck 的 debug 结果
-p : 同时有 -A 条件时,同时有多个 fsck 的检查一起执行
-R : 同时有 -A 条件时,省略 / 不检查
-V : 详细显示模式
-a : 如果检查有错则自动修复
-r : 如果检查有错则由使用者回答是否修复
例子 :
检查 msdos 档案系统的 /dev/hda5 是否正常,如果有异常便自动修复 :
fsck -t msdos -a /dev/hda5
进入后密码可以随便改,同时fsck devname就可以用了,但有一些参数。
下面时详细参考:
filesys : device 名称(eg./dev/sda1),mount 点 (eg. / 或 /usr)
-t : 给定档案系统的型式,若在 /etc/fstab 中已有定义或 kernel 本身已支援的则不需加上此参数
-s : 依序一个一个地执行 fsck 的指令来检查
-A : 对/etc/fstab 中所有列出来的 partition 做检查
-C : 显示完整的检查进度
-d : 列印 e2fsck 的 debug 结果
-p : 同时有 -A 条件时,同时有多个 fsck 的检查一起执行
-R : 同时有 -A 条件时,省略 / 不检查
-V : 详细显示模式
-a : 如果检查有错则自动修复
-r : 如果检查有错则由使用者回答是否修复
例子 :
检查 msdos 档案系统的 /dev/hda5 是否正常,如果有异常便自动修复 :
fsck -t msdos -a /dev/hda5
|
用fsck修复文件系统