技巧分享 修改Ubuntu 8.04的启动选项界面


其实非常简单,结合修改其他Linux系统的操作和Ubuntu 8.04的自身特点,几步即可完成:

1、运行终端,输入sodu gedit /boot/grub/menu.lst

回车后输入超级用户的密码即可调出相应菜单;

2、带#号的行不用理会,主要修改的有:

default 0(默认为0,如果你想修改为直接从windows启动,则需要修改0为其他数字,我个人的为2)

timeout 5(系统等待时间,可随意修改为大于0的任何数字)

3、我个人将Ubuntu默认的安全模式等全部删除了,删除完的内容如下:

title Ubuntu 8.04
root (hd0,6)
kernel /boot/vmlinuz-2.6.24-16-generic root=UUID=4dc665d1-c8d0-4248-8f51-676fb4633497 ro quiet splash locale=zh_CN
initrd /boot/initrd.img-2.6.24-16-generic
quiet

### END DEBIAN AUTOMAGIC KERNELS LIST

# This is a divider, added to separate the menu items below from the Debian
# ones.
title Other operating systems:
root

# This entry automatically added by the Debian installer for a non-linux OS
# on /dev/sda1
title Windows 2003 / Mac OSX(我的系统中还安装有OSX)
root (hd0,0)
savedefault
makeactive
chainloader +1

4、该文件不支持中文,修改完成后进行保存,切记!

相关内容