|
|
grub4dos 与 gnu grub legacy 完全兼容,你可以原封不动照搬 Linux 下的菜单。
或者你可以用一些 grub4dos 特有的、更灵活的引导方式,比如这样:
title Red Hat Linux (2.4.20-8)
find --set-root /boot/vmlinuz-2.4.20-8
kernel /boot/vmlinuz-2.4.20-8 ro root=LABEL=LINUX
initrd /boot/initrd-2.4.20-8.img
boot
title Windows XP
find --set-root /ntldr
chainloader /ntldr
boot
顺便指出你的一个错误:
title Windows XP
rootnoverify (hd0,0)
makeactive
上面这个菜单是无法成功启动 XP 的,原因是缺少一条 chainloader 命令。 |
|