1. 程式人生 > >解決ubuntu+win10雙系統迴圈進入啟動介面導致無法啟動win10的問題

解決ubuntu+win10雙系統迴圈進入啟動介面導致無法啟動win10的問題

文章參考了:http://www.it165.net/os/html/201508/14533.html,在此做一下備忘。

本人在win10上安裝了ubuntu雙系統,但是在選擇啟動系統的介面選擇win10卻一直回到這個選擇介面,在網上尋找答案,需要更改一個檔案:

啟動ubuntu,進入/boot/grub/目錄使用sudo修改grub.cfg檔案

在win10相關的部分末尾加入ntldr /bootmgr

即:

menuentry 'Windows 10 (loader) (on /dev/sda1)' --class windows --class os $menuentry_id_option 'osprober-chain-76EA32A7EA326411' {
    insmod part_msdos
    insmod ntfs
    set root='hd0,msdos1'
    if [ x$feature_platform_search_hint = xy ]; then
      search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1  76EA32A7EA326411
    else
      search --no-floppy --fs-uuid --set=root 76EA32A7EA326411
    fi
    parttool ${root} hidden-
    drivemap -s (hd0) ${root}
    chainloader +1
    ntldr /bootmgr


}

儲存重啟,即可順利進入win10