|
|
发表于 2004-10-10 12:31:22
|
显示全部楼层
实在不行就编辑/boot/grub/menu.lst
timeout 10 #等待进入默认系统时间,设为-1为无限时
#color black/cyan yellow/cyan grub启动画面背景
splashimage=(hd0,6)/grub/j.xpm.gz#默认是没有这行只有上行
#这是设置背景图片
default 0 #0代表这默认进入下面第一行的系统,这里是linux
title Mandrakelinux #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 后面的数字改成自己想设定的默认系统
在10.1C中这个配置文件是/boot/grub/menu.lst
看资料在其他的种类的linux 好象是/etc/grub.conf |
|