web-dev-qa-db-ja.com

Windows 7 / UbuntuデュアルブートマシンでWindows10へのアップグレードが失敗する

Windows7のインストールをWindows10にアップグレードしようとすると、常にError 800703EDで失敗します。これは、デュアルブートセットアップが原因であると強く疑っています。以下にディスク/ grub構成に関する情報を挿入しました。デュアルブートセットアップで破壊せずにアップグレードを機能させるには、何をする必要がありますか。 BIOSを使用して、別々のディスク上にあるため、起動するOSを選択できるため、特にgrubは必要ありません。

                    Boot Info Script 0.74      [06 February 2016]


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

 => Grub2 (v2.00) is installed in the MBR of /dev/sda and looks at sector 1 of 
    the same hard drive for core.img. core.img is at this location and looks 
    for /boot/grub. It also embeds following components:

    modules
    ---------------------------------------------------------------------------
    fshelp ext2 part_msdos biosdisk search_fs_uuid
    ---------------------------------------------------------------------------

    config script
    ---------------------------------------------------------------------------
    search.fs_uuid 2eb75a40-a660-4b81-910f-8cb9996282ca root hd1,msdos1 
    set prefix=($root)'/boot/grub'

    ---------------------------------------------------------------------------
 => Grub2 (v2.00) is installed in the MBR of /dev/sdb and looks at sector 1 of 
    the same hard drive for core.img. core.img is at this location and looks 
    for (,msdos1)/boot/grub. It also embeds following components:

    modules
    ---------------------------------------------------------------------------
    fshelp ext2 part_msdos biosdisk
    ---------------------------------------------------------------------------
 => Grub2 (v2.00) is installed in the MBR of /dev/sdc and looks at sector 1 of 
    the same hard drive for core.img. core.img is at this location and looks 
    for /boot/grub. It also embeds following components:

    modules
    ---------------------------------------------------------------------------
    fshelp ext2 part_msdos biosdisk search_fs_uuid
    ---------------------------------------------------------------------------

    config script
    ---------------------------------------------------------------------------
    search.fs_uuid 2eb75a40-a660-4b81-910f-8cb9996282ca root hd1,msdos1 
    set prefix=($root)'/boot/grub'

    ---------------------------------------------------------------------------

sda1: __________________________________________________________________________

    File system:       ntfs
    Boot sector type:  Windows 7/2008: NTFS
    Boot sector info:  No errors found in the Boot Parameter Block.
    Operating System:  
    Boot files:        /bootmgr /Boot/BCD

sda2: __________________________________________________________________________

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

sdb1: __________________________________________________________________________

    File system:       ext4
    Boot sector type:  -
    Boot sector info: 
    Operating System:  Ubuntu 16.04 LTS
    Boot files:        /boot/grub/grub.cfg /etc/fstab 
                       /boot/grub/i386-pc/core.img

sdb2: __________________________________________________________________________

    File system:       Extended Partition
    Boot sector type:  -
    Boot sector info: 

sdb5: __________________________________________________________________________

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

sdc1: __________________________________________________________________________

    File system:       ntfs
    Boot sector type:  Windows 7/2008: NTFS
    Boot sector info:  No errors found in the Boot Parameter Block.
    Operating System:  
    Boot files:        
2
mac

私がよく使うフリーソフトウェアがあります EasyBCD 。これにより、Windowsブートローダーを完全にカスタマイズできます。

私が提案するのは:

  1. これを使用して、ブートローダーをWindowsブートローダーに設定します(「BCD展開」の「MBRの書き込み」機能を使用)
  2. Windows10にアップグレードする
  3. EasyBCDを再度使用して、WindowsとUbuntuの間にデュアルブートを設定します

私はラップトップでこのソフトウェアを使用して、Windows10とLinuxMint 17の間にデュアルブートをセットアップしました。少し手を加えた後、それは魅力のように機能します。唯一の問題は、実際にGRUBを呼び出してLinuxMintを起動することです。したがって、GRUB paramで非常に短い待機時間(3秒)を設定しました。

また、Windows 10で使用する場合は、Metroブートローダーを無効にすることを強くお勧めします。Metroブートローダーは実際にWindowsを起動し、起動するOSを選択するように求め、Linuxを選択すると、コンピューターを再起動して他のOSのブートローダーを呼び出します。 EasyBCDの設定ですべてを行うことができます。

私は数週間前に同じ立場にあったことに完全に同意します。これはデュアルブートです。私が行ったのは、Grubと私の場合はCentos 7のコピーを含むディスクから、SATA電源ケーブルとデータケーブルを物理的に抜くことでした。その後、Windows10をインストールしました。病棟はディスクを接続し直し、すべてが魅力のように機能しました。 Windows10とCentos7を起動することはできましたが、Centos7のGrubブートメニューのリンクからWindows10に移動できます。

1
Charles Ludlow