当前位置: 技术问答>linux和unix
grub引导显示的名称怎么改?
来源: 互联网 发布时间:2015-08-22
本文导语: 一开始安装的时候忘了改了,现在起动显示的是dos和linux,哪个dos怎么改名为windows2000? | 编辑/etc/grub.conf 其中#是注释符 timeout 10 #color black/cyan yellow/cyan grub启动画面背景 splashimage=(hd0,6)/grub...
一开始安装的时候忘了改了,现在起动显示的是dos和linux,哪个dos怎么改名为windows2000?
|
编辑/etc/grub.conf 其中#是注释符
timeout 10
#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
timeout 10
#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