Windows 8のインストール後にGrubはロードされません。

Windows 8のインストール後にGrubはロードされません。

私のシステムは、Ubuntu 12.04.1 LTSとWindows 7をデュアルブートするように設定されています。今日、私はWindows 8のMSDNバージョンを入手してWindows 7にインストールしました。 GRUB画面をロードせずにコンピュータがWindows 8から直接起動します。

だから、以下の提案された手順に従いました。https://help.ubuntu.com/community/RecoveringUbuntuAfterInstallingWindows。次のコマンドを実行します。

    ls -l /dev/disk/by-label/

次の出力を提供します。

    total 0
    lrwxrwxrwx 1 root root 10 Sep 11 07:51 Entertainment -> ../../sda2
    lrwxrwxrwx 1 root root 10 Sep 11 02:45 PENDRIVE -> ../../sdb1

このコマンドは、fdisk -l次の出力も提供します。

    Disk /dev/sda: 320.1 GB, 320072933376 bytes
    255 heads, 63 sectors/track, 38913 cylinders, total 625142448 sectors
    Units = sectors of 1 * 512 = 512 bytes
    Sector size (logical/physical): 512 bytes / 512 bytes
    I/O size (minimum/optimal): 512 bytes / 512 bytes
    Disk identifier: 0x1246aa23

       Device Boot      Start         End      Blocks   Id  System
    /dev/sda1   *        2048   319582199   159790076    7  HPFS/NTFS/exFAT
    /dev/sda2       319582208   602906623   141662208    7  HPFS/NTFS/exFAT
    /dev/sda3       602908672   625135615    11113472   83  Linux

    Disk /dev/sdb: 1939 MB, 1939865600 bytes
    64 heads, 63 sectors/track, 939 cylinders, total 3788800 sectors
    Units = sectors of 1 * 512 = 512 bytes
    Sector size (logical/physical): 512 bytes / 512 bytes
    I/O size (minimum/optimal): 512 bytes / 512 bytes
    Disk identifier: 0xc3072e18

       Device Boot      Start         End      Blocks   Id  System
    /dev/sdb1   *        2248     3788799     1893276    c  W95 FAT32 (LBA)

だから私はこれを実行する必要があると仮定します:sudo grub-install /dev/sda3GRUBを起動して実行します。ただし、次のエラーが発生します。

    /usr/sbin/grub-probe: error: cannot find a device for /boot/grub (is /dev mounted?).

誰でも私を正しい方向に案内できますか?現在、Ubuntuのインストールは、ブートマネージャの問題によって失われる必要性と比較してあまりにもカスタマイズされています!どんな助けでも大変感謝します!

ベストアンサー1

chrootメソッドを試してください:(これらのコマンドはすべてルートで使用するか、sudoを使用してください)

mount /dev/sda3 /mnt/
mount -o bind /dev /mnt/dev
mount -o bind /proc /mnt/proc
cp /proc/mounts /mnt/etc/mtab/
chroot /mnt /bin/bash
grub-install /dev/sda

おすすめ記事