GRUBがLinuxのみにした後、デュアル-bootオプションを取り戻す方法


0

すでにWidows 7がインストールされているPCにRHEL 4.0をインストールしました。デュアルブートオプションを指定せずにGRUBブートローダーをインストールしました。RHEL4.0に移行するオプションのみを提供します。GRUBにWindows 7を起動するオプションを提供するように指示する方法はありますか?

更新:私のmenu.lstは以下のようになります

[root@abacchu-lnx ~]# more /boot/grub/menu.lst
# 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,1)
#          kernel /boot/vmlinuz-version ro root=/dev/sda2
#          initrd /boot/initrd-version.img
#boot=/dev/sda
default=0
timeout=5
splashimage=(hd0,1)/boot/grub/splash.xpm.gz
hiddenmenu

title Red Hat Enterprise Linux AS (2.6.9-89.0.11.ELsmp)
        root (hd0,1)
        kernel /boot/vmlinuz-2.6.9-89.0.11.ELsmp ro root=LABEL=/1
        initrd /boot/initrd-2.6.9-89.0.11.ELsmp.img
title Red Hat Enterprise Linux AS (2.6.9-89.0.11.EL)
        root (hd0,1)
        kernel /boot/vmlinuz-2.6.9-89.0.11.EL ro root=LABEL=/1
        initrd /boot/initrd-2.6.9-89.0.11.EL.img
title Red Hat Enterprise Linux AS (2.6.9-89.ELsmp)
        root (hd0,1)
        kernel /boot/vmlinuz-2.6.9-89.ELsmp ro root=LABEL=/1
        initrd /boot/initrd-2.6.9-89.ELsmp.img
title Red Hat Enterprise Linux AS-up (2.6.9-89.EL)
        root (hd0,1)
        kernel /boot/vmlinuz-2.6.9-89.EL ro root=LABEL=/1
        initrd /boot/initrd-2.6.9-89.EL.img
title Other
        rootnoverify (hd0,0)
        chainloader +1

回答:


1

grubメニューファイルを編集するオプションがあります。このファイルは通常、/boot/grub/menu.lst異なるOSをロードするためのコマンドのリストに含まれています。

次のように、2番目(3番目)のOS、Windowsの場合、別のエントリを追加します。

default=0
timeout=5

title Windows
    root(hd0,0)
    rootnoverify(hd0)
    chainloader +1

title RHEL
    root(hd0,1)
    kernel /vmlinuz-2.6...
    initrd /initrd-2.6...

hd0(hd0,0)というのは、それが最初のハードドライブであり0、OSが最初のパーティションにあることを意味します(通常、コンピューターに関連する多くの番号はゼロから始まります)。
ヤシルArsanukaev

ありがとう。それはトリックをしました。メニューを非表示にするだけで、ウィンドウにアクセスできました。
アンジャンバッチュ
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.