关于grub和新kernel boot

关于grub和新kernel boot

我用的是red hat7.2的grub,现在down了一个新的内核,编译后 加到grub的menu.conf里面去都不能reboot进入!各位知道怎么加到里面去吗?
      
我都试过同样的问题,你将menu.lst贴出来看看。      
content of grub.conf

.....
title redhat (2.4.7-10)
root (hd0,6)
kernel /root/vmlinuz-2.4.7-10 ro root=/dev/hda7
initrd /boot/initrd-2.4.7-10.img
title win2000
...
#about win2000

title linux(2.4.10)
#about the new kernel
kernel /root/vmlinuz-2.4.10 ro root=/dev/hda7



when reboot with new kernel:

No setup signature found ......

I don't know what happened!      
你的新kernel有多少bytes?
要是少于300KB,那你大概用了make zImage.改用
make bzImage重新做个kernel就好了.      
如果按楼上那位人兄的方法还不行,你就试试把新内核的名称把为旧内核的名称(记住把旧内核备份)
content of grub.conf

.....
title redhat (2.4.7-10)
root (hd0,6)
kernel /root/vmlinuz-2.4.7-10 ro root=/dev/hda7  # 这里指向新内核
initrd /boot/initrd-2.4.7-10.img
title win2000
...
#about win2000

#title linux(2.4.10)
#about the new kernel
#kernel /root/vmlinuz-2.4.10 ro root=/dev/hda7