Volumn group "VolGroup00" not found

转载http://blog.csdn.net/hansel/article/details/5350345


Volume group "VolGroup00" not found
mount: could not find filesystem '/dev/root'
setuproot: voming /dev failed: No such file or directory
...
switchroot: mount failed: No such file or directory
KERNEL PANIC - NOT SYNCING: ATTEMPTED TO KILL INIT!"



rhel光盘启动, 出现提示界面的时候,输入linux rescue用恢复方式启动

boot: linux rescue

 

1、使用Redhat Enterprise Linux 5安装光盘启动,按F5进行修复模式,输入linux rescue回车;
2、可选驱动网卡,这样可以远程操作或者通过网络复制文件;
3、选择搜索磁盘上的Linux系统,这样启动完成后会把磁盘上的Linux系统的根文件系统挂在/mnt/sysimage目录;
4、启动完成后,输入chroot /mnt/sysimage,切换根目录到原来的Linux系统的根目录;
5、可选启动sshd方便远程操作: #service sshd start
6、备份原来的initrd文件:
    #cd /boot
    #cp initrd-2.6.18-164.el5.img initrd-2.6.18-164.el5.img.bak
7、制作新的initrd文件,注意用原硬盘中系统的initrd号,我的为2.6.18-164.el5系统,

[root@localhost boot]# mkinitrd -v -f initrd-2.6.18-8.el5.img $(uname -r)

Creating initramfs
Looking for deps of module uhci-hcd
Looking for deps of module ohci-hcd
Looking for deps of module ehci-hcd
Looking for deps of module ext3: jbd 
Looking for deps of module jbd
Looking for driver for device cciss/c0d0p2
Looking for driver for device cciss/c0d1p1

。。。



#reboot 即可



你可能感兴趣的:(linux,failed,根目录,光盘启动)