当前位置: 技术问答>linux和unix
如何更改启动时的那个选项表?
来源: 互联网 发布时间:2015-08-15
本文导语: 我安装了RH9 和 W2k 在安装 linux 时,默认是进入到 linux 里 如何改为默认为 windows? | 编辑/etc/grub.conf 其中#是注释符 timeout 10 #等待进入默认系统时间,设为-1为无限时 #color black/cyan yellow/cyan ...
我安装了RH9 和 W2k 在安装 linux 时,默认是进入到 linux 里
如何改为默认为 windows?
如何改为默认为 windows?
|
编辑/etc/grub.conf 其中#是注释符
timeout 10 #等待进入默认系统时间,设为-1为无限时
#color black/cyan yellow/cyan grub启动画面背景
splashimage=(hd0,6)/grub/j.xpm.gz#默认是没有这行只有上行
#这是设置背景图片
default 0 #0代表这默认进入下面第一行的系统,这里是linux
title Redhat
title Other #title 后面跟字符串,为选择菜单的名称,只要把你想默认启动的系统放到第一行就可以了
kernel (hd0,6)/vmlinuz root=/dev/hda8 devfs=nomount acpi=ht resume=/dev/hda9 splash=silent vga=791
#这里按照打开时的样子,不要更改
initrd (hd0,6)/initrd.img#这里也是
#title linux-nonfb #假如不想要这个选项之在最前面加#号注释
#kernel (hd0,6)/vmlinuz root=/dev/hda8 devfs=nomount acpi=ht #resume=/dev/hda9
#initrd (hd0,6)/initrd.img #如这样注释,这里的语句就没作用了
title failsafe #这是系统启动xwindow失败,可以启动字符界面
#建议你还是留下这个吧~~
kernel (hd0,6)/vmlinuz root=/dev/hda8 failsafe acpi=ht resume=/dev/hda9 devfs=nomount
initrd (hd0,6)/initrd.img
title windows #这里就是启动windows了
root (hd0,0)
chainloader +1
#title linux-smp
#kernel (hd0,6)/vmlinuz-smp root=/dev/hda8 devfs=nomount acpi=ht resume=/dev/#hda9 splash=silent vga=791
#initrd (hd0,6)/initrd-smp.img
其实没什么改的,把不想要的选项注释掉,把default 后面的数字改成自己想设定的默认系统
timeout 10 #等待进入默认系统时间,设为-1为无限时
#color black/cyan yellow/cyan grub启动画面背景
splashimage=(hd0,6)/grub/j.xpm.gz#默认是没有这行只有上行
#这是设置背景图片
default 0 #0代表这默认进入下面第一行的系统,这里是linux
title Redhat
title Other #title 后面跟字符串,为选择菜单的名称,只要把你想默认启动的系统放到第一行就可以了
kernel (hd0,6)/vmlinuz root=/dev/hda8 devfs=nomount acpi=ht resume=/dev/hda9 splash=silent vga=791
#这里按照打开时的样子,不要更改
initrd (hd0,6)/initrd.img#这里也是
#title linux-nonfb #假如不想要这个选项之在最前面加#号注释
#kernel (hd0,6)/vmlinuz root=/dev/hda8 devfs=nomount acpi=ht #resume=/dev/hda9
#initrd (hd0,6)/initrd.img #如这样注释,这里的语句就没作用了
title failsafe #这是系统启动xwindow失败,可以启动字符界面
#建议你还是留下这个吧~~
kernel (hd0,6)/vmlinuz root=/dev/hda8 failsafe acpi=ht resume=/dev/hda9 devfs=nomount
initrd (hd0,6)/initrd.img
title windows #这里就是启动windows了
root (hd0,0)
chainloader +1
#title linux-smp
#kernel (hd0,6)/vmlinuz-smp root=/dev/hda8 devfs=nomount acpi=ht resume=/dev/#hda9 splash=silent vga=791
#initrd (hd0,6)/initrd-smp.img
其实没什么改的,把不想要的选项注释掉,把default 后面的数字改成自己想设定的默认系统