|
# grub.conf generated by anaconda
#
# Note that you do not have to rerun grub after making changes to this file
# NOTICE: You have a /boot partition. This means that
# all kernel and initrd paths are relative to /boot/, eg.
# root (hd0,0)
# kernel /vmlinuz-version ro root=/dev/sda6
# initrd /initrd-version.img
#boot=/dev/sda
default=0
timeout=15
splashimage=(hd0,0)/grub/splash.xpm.gz
hiddenmenu
title CentOS (2.6.18-92.el5)
root (hd0,0)
kernel /vmlinuz-2.6.18-92.el5 ro root=LABEL=/1 rhgb quiet
initrd /initrd-2.6.18-92.el5.img
title ATI SERVER (9.5 FULL) grub4dos
root (hd0,0)
kernel /grub.exe
linux的grub用chainloader /grldr是不行的,因为CentOS的grub不支持这个功能。你应该用kernel/grub.exe(把grub4dos的grub.exe复制到你(hd0,0)的根目录下,如果放在root目录下,你可以用kernel(hd0,0)/root/grub.exe。 |
|