裝了 centos 后,主啟動文件被覆蓋后,默認是進入centos系統(tǒng),并且如果你不知道按方向銉來切換的話,你就根本進不了windows系統(tǒng),因為從表面上根本看不到windows的啟動菜單,這讓我覺得很是不爽。下面是我的修改過程。 |
現(xiàn)在主啟動程序是調(diào)用centos系統(tǒng)下的grub.
vi /boot/grub/grub.conf
,有的系統(tǒng)是修改
grub.conf
,有的系統(tǒng)呢是修改
menu.lst
文件,這就要看啟動內(nèi)容放在哪個文件里在了
成都創(chuàng)新互聯(lián)自成立以來,一直致力于為企業(yè)提供從網(wǎng)站策劃、網(wǎng)站設計、網(wǎng)站制作、網(wǎng)站設計、電子商務、網(wǎng)站推廣、網(wǎng)站優(yōu)化到為企業(yè)提供個性化軟件開發(fā)等基于互聯(lián)網(wǎng)的全面整合營銷服務。公司擁有豐富的網(wǎng)站建設和互聯(lián)網(wǎng)應用系統(tǒng)開發(fā)管理經(jīng)驗、成熟的應用系統(tǒng)解決方案、優(yōu)秀的網(wǎng)站開發(fā)工程師團隊及專業(yè)的網(wǎng)站設計師團隊。
timeout=3 //3秒后會自動進入系統(tǒng) default=0 //默認進入的是第一個系統(tǒng),下面第一個是centos,一個title對應一個系統(tǒng) splashimage=(hd0,5)/boot/grub/splash.xpm.gz //歡迎界面,玩過centos的都 知道 hiddenmenu //隱藏啟動菜單 title CentOS //啟動菜單上顯示的名稱 root (hd0,5) //啟動根目錄是第一個磁盤的第6個分區(qū) kernel /boot/vmlinuz-2.6.18-194.26.1.el5 ro root=LABEL=/ rhgb quiet //啟動文件 initrd /boot/initrd-2.6.18-194.26.1.el5.img //啟動鏡像文件 title other //其他系統(tǒng) rootnoverify (hd0,0) //啟動根目錄是第一個磁盤的第一個分區(qū),一般都是C盤 chainloader +1 //啟動windows啟動菜單 timeout=20 default=0 color light-blue/black light-cyan/blue //定義了一下,啟動菜單的顏色 #splashimage=(hd0,5)/boot/grub/splash.xpm.gz //注釋掉 #hiddenmenu //注釋掉,不然不會顯示菜單的 title CentOS root (hd0,5) kernel /boot/vmlinuz-2.6.18-194.26.1.el5 ro root=LABEL=/ rhgb quiet initrd /boot/initrd-2.6.18-194.26.1.el5.img title Arch Linux root (hd0,1) kernel /boot/vmlinuz26 root=/dev/sda2 ro vga=788 initrd /boot/kernel26.img title vista rootnoverify (hd0,0) chainloader +1 title rip linux root (hd0,1) kernel /boot/rip/kernel32 root=/dev/ram0 ro initrd /boot/rip/rootfs.cgz
這個啟動菜單還不是很完美,因為在選擇vista啟動菜單的時候,會彈出另一個啟動菜單讓你選擇,而不是直接進vista系統(tǒng),我試了很多種方法,沒有一種能直接進vista的,還望高手指教.