Linux-Mint

無論我嘗試重新安裝 Linux Mint 多少次,都會收到 GRUB 錯誤。我如何解決它?

  • February 6, 2014

我一直在嘗試使用筆記型電腦上的可移動 USB 拇指驅動器安裝 Linux Mint 16 Petra,經過多次嘗試,每次都會遇到相同的錯誤:

error: file '/boot/grub/i386-pc/normal.mod' not found.
Entering rescue mode...
grub rescue>

我嘗試按照此處的說明進行操作,但絕對沒有任何幫助。

如何讓我的電腦啟動?

解決方案是使用 U 盤啟動電腦,然後執行Boot Repair,這是我剛剛了解的。

通過儲存庫安裝很容易,並且過程非常清晰。它報告了一個錯誤,但電腦仍然能夠成功重新啟動。

在 GRUB 菜單中,預設選項ubuntu不是 Linux Mint,但我可以接受。

在grub4dos USB 引導的menu.lst中使用這些行:

#  #  #
find --set-root /linuxmint.iso
map (hd0) (hd1)
map (hd1) (hd0)
map --mem /firadisk.img (fd1)
map --mem (md)0x6000+800 (fd0)
map --mem /linuxmint.iso (0xff)
map --hook
dd if=(fd1) of=(fd0) count=1
chainloader (0xff)
#  #  #

PS:

  1. linuxmint.iso 適用於任何作業系統 iso 的安裝
  2. firadisk.iso 是一個虛擬iso(google it)

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