歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux基礎 >> Linux教程

技巧分享 修改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、該文件不支持中文,修改完成後進行保存,切記!

Copyright © Linux教程網 All Rights Reserved