web-dev-qa-db-ja.com

Windows7をGRUB 2に追加するにはどうすればよいですか?

GRUB 2ブートメニューにWindows7を追加するのに問題があります。このサイトや他のサイトでも同様の質問があり、回答されていることは知っていますが、どの回答もうまくいかないようです。

私のセットアップ:2台のハードドライブ、Win 7インストールのsdaと、DebianインストールとGRUB2のsdb。

BIOSでは、起動するハードドライブを選択できます。最初のハードドライブから起動すると、Windowsが起動するので、動作していることがわかります。次に、メニュー項目をGRUBに追加して、Windowsを起動します。

bootinfoscript をダウンロードして実行しました。これがRESULTS.txtです:

                  Boot Info Script 0.61      [1 April 2012]


============================= Boot Info Summary: ===============================

 => Windows is installed in the MBR of /dev/sda.
 => Grub2 (v1.99) is installed in the MBR of /dev/sdb and looks at sector 2048 
    of the same hard drive for core.img. core.img is at this location and 
    looks for (,gpt2)/boot/grub on this drive.

sda1: __________________________________________________________________________

    File system:       
    Boot sector type:  Windows Vista/7: NTFS
    Boot sector info: 
    Mounting failed:   mount: unknown filesystem type ''

sda2: __________________________________________________________________________

    File system:       ntfs
    Boot sector type:  Windows Vista/7: NTFS
    Boot sector info:  No errors found in the Boot Parameter Block.
    Operating System:  Windows 7
    Boot files:        /Windows/System32/winload.exe

sdb1: __________________________________________________________________________

    File system:       BIOS Boot partition
    Boot sector type:  Grub2's core.img
    Boot sector info: 

sdb2: __________________________________________________________________________

    File system:       ext4
    Boot sector type:  -
    Boot sector info: 
    Mounting failed:   mount: unknown filesystem type ''
mount: /dev/sdb2 already mounted or sdb2 busy

sdb3: __________________________________________________________________________

    File system:       swap
    Boot sector type:  -
    Boot sector info: 

============================ Drive/Partition Info: =============================

Drive: sda _____________________________________________________________________

Disk /dev/sda: 256.1 GB, 256060514304 bytes
255 heads, 63 sectors/track, 31130 cylinders, total 500118192 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes

Partition  Boot  Start Sector    End Sector  # of Sectors  Id System

/dev/sda1    *          2,048       206,847       204,800   7 NTFS / exFAT / HPFS
/dev/sda2             206,848   500,115,455   499,908,608   7 NTFS / exFAT / HPFS


Drive: sdb _____________________________________________________________________

Disk /dev/sdb: 3000.6 GB, 3000592982016 bytes
255 heads, 63 sectors/track, 364801 cylinders, total 5860533168 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes

Partition  Boot  Start Sector    End Sector  # of Sectors  Id System

/dev/sdb1                   1 4,294,967,295 4,294,967,295  ee GPT


GUID Partition Table detected.

Partition    Start Sector    End Sector  # of Sectors System
/dev/sdb1           2,048         4,095         2,048 BIOS Boot partition
/dev/sdb2           4,096 2,605,768,703 2,605,764,608 Data partition (Windows/Linux)
/dev/sdb3   2,605,768,704 2,639,306,751    33,538,048 Swap partition (Linux)

"blkid" output: ________________________________________________________________

Device           UUID                                   TYPE       LABEL

/dev/sda2        DCA04533A0451584                       ntfs       
/dev/sdb2        ea61c63c-0a93-44fb-894c-f652c28b67d0   ext4       
/dev/sdb3        ca9c61ec-f99e-428c-bdf3-65fbbfc4b43b   swap       

================================ Mount points: =================================

Device           Mount_Point              Type       Options

/dev/disk/by-uuid/ea61c63c-0a93-44fb-894c-f652c28b67d0 /                        ext4       (rw,relatime,errors=remount-ro,user_xattr,barrier=1,data=ordered)
/dev/sda2        /mnt/win                 fuseblk    (ro,nosuid,nodev,noexec,relatime,user_id=0,group_id=0,default_permissions,allow_other,blksize=4096)


=============================== StdErr Messages: ===============================

xz: (stdin): Compressed data is corrupt

OS-proberは私のWin7インストールを検出できないようです。 update-grub2(OS-proberを実行すると思います)を実行すると、次のように出力されます。

Generating grub.cfg ...
Found background image: /usr/share/images/desktop-base/desktop-grub.png
Found linux image: /boot/vmlinuz-3.2.0-4-AMD64
Found initrd image: /boot/initrd.img-3.2.0-4-AMD64
done

GRUBメニューエントリのバリエーションをいくつか試しました(/etc/grub.d/40_customを変更してからupdate-grub2を実行します)。それらのいくつかを次に示します。

最初のものは単純で、(たとえば)このリンクに触発されています: http://technologytales.com/2010/11/21/manually-adding-an-entry-for-windows-7-to-an -ubuntu-grub2-menu /

menuentry 'Windows 7' {
set root='(hd0,2)'
chainloader +1
}

これは起動せず、GRUBから次の出力になります。

  Booting a command list

error: invalid signature.

Press any key to continue...

それから私はこれを試しました:

menuentry 'Windows 7' --class windows --class os {
insmod part_msdos
insmod ntfs
set root='(hd0,2)'
search --no-floppy --fs-uuid --set=root DCA04533A0451584
chainloader +1
}

その結果:

BOOTMGR is missing
Press Ctrl+Alt+Del to restart

そして私は試しました:

menuentry 'Windows 7' --class windows --class os {
insmod part_msdos
insmod ntfs
insmod ntldr
set root='(hd0,2)'
search --no-floppy --fs-uuid --set=root DCA04533A0451584
ntldr ($root)/Windows/System32/winload.exe
}

これも機能しません(カーソルが点滅している空の画面に移動します)。

私はここで本当に途方に暮れています。どんな助けでも大歓迎です!

更新:デフォルト設定でboot-repair-disk(コメントのmosesによって提案されている)を実行しました。ブートメニューにWin7エントリは追加されませんでした。たぶん、GRUBでMBRを上書きしたため、Win7のインストールを検出できませんでした。 boot-repair-disk log へのリンクは次のとおりです。

4
user829876

問題は、Windows7がブートファイルを保持する100MB systemパーティションを使用することです。したがって、Windowsドライブ(bootパーティションと呼ばれます)ではなく、そこから起動する必要があります。

menuentry 'Windows 7' {
set root='(hd0,1)'
chainloader +1
}

boot info scriptがファイルシステムをマウントできないという問題があるようですが、これはおそらく機能します。

1
Milind R