分类:
2011-02-14 23:51:38
转自:http://hi.baidu.com/flow_star/blog/item/718961e92ea363ded539c9de.html
Linux上安装某软件之后,重新启动,系统提示:
root (hd0,0)
Filesystem type is ext2fs, partition type 0x83
kernel /bzImage_1360×768 ro root=LABEL=/ video...
Error 15: File not found
Press any key to continue...
原因可能是系统启动配置被损坏,导致启动内核镜像无法找到,解决方法:
1.按任意键回到启动菜单,如grub的菜单。
2.在菜单界面按'c'进入grub命令行界面。
3.在grub命令行下输入:
grub>root (hd0,0)
4. 继续在grub命令行下输入:
grub>kernel /boot/vmlinuz-2.6.9-42.ELsmp ro root=LABEL=/ rhgb quiet
回车。(输入过程中按tab可以获得提示,后面的root和rhgb参数要自己确定,可在grub菜单里选择某一项按'e'查看和参考已有设置),会得到一行提示信息。
5. 继续在grub命令行输入:
grub> initrd /boot/initrd-2.6.9-42.ELsmp.img
回车。(同样可以在输入过程中按tab获得提示)
6. 最后在grub命令行中输入boot
7. 等待系统启动,OK。