|
已经编译好了现在就是不之怎么修改grub.conf
原来的
[code:1]
default=0
timeout=-1
splashimage=(hd1,0)/grub/splash4.xpm.gz
title --Linux--
root (hd1,0)
kernel /vmlinuz-2.4.20-8 ro root=LABEL=/ vga=0x314
initrd /initrd-2.4.20-8.img
title --Windows--
rootnoverify (hd0,0)
chainloader +1
[/code:1]
新编译的内核是2.4.22的
我已经将它考倒/boot 下
包括System.map
定名为
vmlinuz-2.4.22
System.map-2.4.22
initrd-2.4.22.img也搞定了在/boot下
我按照样子自己编辑了
[code:1]
default=0
timeout=-1
splashimage=(hd1,0)/grub/splash4.xpm.gz
title ---Linux---
root (hd1,0)
kernel /vmlinuz-2.4.20-8 ro root=LABEL=/ vga=0x314
initrd /initrd-2.4.20-8.img
title --Windows--
rootnoverify (hd0,0)
chainloader +1
title Linux2
root(hd1,0)
kernel /vmlinuz-2.4.22 ro root=LABEL=/
initrd /initrd-2.4.22.img
[/code:1]
结果在开机滚动一屏多的地方停了
[code:1]
VFS: cannot open root device "LABEL=/" or 00:00
Please append a correct "root=" boot option
Kernel Panic: VFS : Unable to mount root fs on 00:00
[/code:1]
而我正常起动时它的显示为
[code:1]
VFS: mount root (ext2 filesystem)
[/code:1]
请教高手怎么改grub.conf ??
ps:我的硬盘分区
hdb1 /boot
hdb2 swap
hdb5 /
hdb6 /usr
hdb7 /var
hdb8 /home |
|