如何让 GNU GRUB 自动启动 Linux Ubuntu?

如何让 GNU GRUB 自动启动 Linux Ubuntu?

如何让 Windows 启动管理器自动打开 GNU GRUB,然后使用 GNU GRUB 自动启动 Linux Ubuntu 11.04。请详细回答并说明步骤。谢谢。

答案1

您需要编辑 GRUB 的配置文件:

/boot/grub/grub.conf

在那里,您将 Linux 分区设置为默认分区。

default=0
timeout=10
splashimage=(hd0,0)/grub/splash.xpm.gz
hiddenmenu
title Red Hat Enterprise Linux AS (2.6.8-1.523)
    root (hd0,0)
    kernel /vmlinuz-2.6.8-1.523 ro root=/dev/VolGroup00/LogVol00 rhgb quiet
    initrd /initrd-2.6.8-1.523.img

# section to load Windows 
title Windows
    rootnoverify (hd0,0)
    chainloader +1

default在这个例子中0,这是 GRUB 菜单的第一个条目。

相关内容