Grub挂掉
2020年11月7日下午12:32
2020年11月21日下午10:25
開機grub直接進入自救模式error:unknown filesystem
方案
無非就是找不到啓動位置
ls
查看硬盤信息
通常會有幾個(hd0,gpt6)類似的,比如我有兩塊硬盤那可能就是hd0和hd1了,一般來講,取每個硬盤最前面的滿足(hdx,gpty)格式。
使用 ls (hdx,gpty)
查看有沒有錯。沒找到,不支持的就嘗試下一個滿足格式的(hdx,gpty)
若是看到有.cfg輸出,那八成沒跑了
set root=(hdx,gpty)/boot/grub
set prefix=(hdx,gpty)/boot/grub
insmod normal
normal
不出意外回到了熟悉的grub,進入linux系統更新grub
sudo update-grub
用lsblk
查看挂載了efi的分區,例如是/dev/sdb1
sudo grub-install /dev/sdb1
沒有出錯消息就妥了