1. 程式人生 > >windows7 安裝ubuntu 18後的啟動

windows7 安裝ubuntu 18後的啟動

我的電腦ASUS K55VD 原來是windows7 系統, 安裝了ubuntu 18.04, 開始裝不上顯示無法安裝到 /target, 連網後安裝,ubuntu的安裝程式會在網上下載一些更新,這些更新能夠正常的安裝grub, 但是在gru選單中找不到windows的選項.

多方搜尋無果.

找到了相關答案

  • efibootmgr -- This Linux tool can adjust the boot order. Begin by typing sudo efibootmgralone to see the options. Note the number (Boot####) associated with the ubuntu
     entry, and the current boot order (on the BootOrder line). You can then enter a new boot order with the ubuntu entry at the top by using the -o option. For instance, if the current boot order is 0000,0003,0007,0004 and ubuntu is 0007, you'd type sudo efibootmgr -o 0007,0000,0003,0004 to adjust the boot order.
[email protected]
:~$ efibootmgr BootCurrent: 0005 Timeout: 3 seconds BootOrder: 0002,0006,0005 Boot0002* Hard Drive Boot0005* ubuntu Boot0006* CD/DVD Drive

執行命令後,顯示當前的啟動項和啟動順序.

sudo efibootmgr -t 3

指定timeout 是3秒

sudo efibootmgr -o 0002,0005

指定原來的硬碟啟動作為首選項.開機時按Esc,即可看到啟動項.也可以按鍵盤上下鍵,進行選擇.

問題解決.