Linux启动时 Error 15: File not found 问题解决方法

今天,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>root  (hd0,0)

4. grub>kernel (hd0,0)/vmlinuz-2.6.18-371.el5      (输入过程中按tab可以获得提示

5. grub> initrd (hd0,0)/initrd-2.6.18-371.el5.img

6. grub> boot


上面的 (hd0,0)vmlinuz-2.6.18-371.el5    initrd-2.6.18-371.el5.img根据实际机器情况进行修改。可以使用TAB进行补全选择。


参考文档: http://blog.csdn.net/guanzhongs/article/details/2511740 

                   该文档目录中用 了/boot/ 我是无法启动的,去掉boot 如我所写是能解决问题的。

                   

你可能感兴趣的:(Linux)