Ubuntu

全新 Ubuntu 18.04 LTS 安裝只會啟動進入 grub 模式

  • March 9, 2019

我在具有 120 GB SSD 驅動器的筆記型電腦上安裝了 Ubuntu 18.04 LTS(具有預設分區和安全加密的最小設置)。

當我嘗試啟動時,它只會載入到命令行 grub 模式(GNU GRUB 2.02 版)。ls輸出給了我以下資訊:

(hd0) (hd0,gpt3) (hd0,gpt2) (hd0,gpt1)

ls (hd0,gpt3)/
error: unkown filesytem

ls (hd0,gpt2)/
./ ../ lost+found/ efi/ grub/ ... and then seems to list the kernels e.g. vmlinuz-4.15.0-23-generic

ls (hd0,gpt1)/
efi/

我的 BIOS 中的引導模式設置為 UEFI。

這對我有用。(需要網際網路連接):

  1. 啟動進入 Ubuntu 18.04 LTS 的解決方法

@jas-是對的。Tab 鍵自動完成有幫助!)

grub>提示:

configfile /efi/grub/grub.cfg

或者

configfile (hd0,gpt1)/efi/grub/grub.cfg
  1. 登錄到正在執行的系統後,從終端 (Ctrl+Alt+T) 重新安裝 Grub 以進行 UEFI 引導:
sudo su -
apt install --reinstall grub-efi-amd64 linux-generic linux-headers-generic

在提示使用哪個配置文件時,我選擇了第一個選項,使用包維護者的文件。

然後

update-initramfs -c -k all
  1. 完畢!

命令源

  • 在Ubuntu 文件> Grub2/Troubleshooting > Specific Troubleshooting > grub> > Quick Fix https://help.ubuntu.com/community/Grub2/Troubleshooting#grub.3E-1中找到 Grub 引導的解決方法
  • 重新安裝從 System76 支持文章修改的步驟。不需要chroot修復,因為我可以啟動到實際系統。GRUB - 修復 GRUB 引導載入程序

https://support.system76.com/articles/grub/#for-sata-drives

  • 可能與:

+ 在現有 LVM 安裝上執行“整個磁碟”安裝將失敗,因為安裝程序選擇了錯誤的引導設備 ( 1724417 ) 改為使用自定義分區並在組合框中手動選擇正確的引導設備。

https://wiki.ubuntu.com/BionicBeaver/ReleaseNotes#Desktop

引用自:https://unix.stackexchange.com/questions/454377