|
Advance Member
|
我只大概記得一些些...
你可以去相關的 Linux 討論區會有比較詳細的教法,
我上次使用的是 Fedora 6 的 grub 作為多重開機;
找檔案 grub.conf 就是多重開機的選單,
以下是我之前電腦多重開機內容
=========================================================
# grub.conf generated by anaconda
#
# Note that you do not have to rerun grub after making changes to this file
# NOTICE: You do not have a /boot partition. This means that
# all kernel and initrd paths are relative to /, eg.
# root (hd0,2)
# kernel /boot/vmlinuz-version ro root=/dev/sda3
# initrd /boot/initrd-version.img
#boot=/dev/sda
default=1
timeout=6
splashimage=(hd0,2)/boot/grub/splash.xpm.gz
#hiddenmenu
title Fedora 6 (2.6.18-1.2798.fc6xen)
root (hd0,2)
kernel /boot/xen.gz-2.6.18-1.2798.fc6
module /boot/vmlinuz-2.6.18-1.2798.fc6xen ro root=LABEL=/ rhgb quiet
module /boot/initrd-2.6.18-1.2798.fc6xen.img
title Window
unhide (hd0,1)
rootnoverify (hd0,1)
chainloader +1
makeactive
title DOS (Ghost)
unhide (hd0,0)
rootnoverify (hd0,0)
chainloader +1
makeactive
=========================================================
unhide 就是不隱藏分割區
(之前使用 spfdisk 隱藏分割區, 導致grub覆蓋 MBR 之後無法進入該分割區)
rootnoverify 就是指定開機的分割區
如果 Linux grub 多重選單不見了...
可以放入光碟打 linux rescue
之後的視窗 學校有發書的話裡面都會說到復原方法 ~
|