Ubuntu

我們可以使用 Linux Mint ISO 來修復 Ubuntu 的 Grub 嗎?

  • September 3, 2014

我的一個朋友正在執行 Ubuntu 並獲得了GRUB RESCUE. 他們可以使用 Mint ISO 來修復他們的 Grub 嗎?因為我沒有 Ubuntu ISO?

如果 Ubuntu 安裝仍然存在(並且只有 GRUB 失去),當然,您可以使用任何具有實時啟動功能的發行版來執行此操作。chroot進入Ubuntu安裝並安裝和更新Grub。如果/dev/sda5是 Ubuntu 分區:

mount /dev/sda5 /mnt
mount -o bind /dev /mnt/dev
mount -t proc none /mnt/proc
mount -t sysfs none /mnt/sys
mount -t devpts none /mnt/dev/pts
chroot /mnt /bin/bash
#Inside the chroot
grub-install /dev/sda
update-grub
exit
# Unmount all those mounts:
for m in /mnt/{dev/pts,dev,proc,sys,}; do umount $m; done
# reboot

如果您需要做的只是安裝 grub,並且不需要更新,那麼您不需要chroot

mount /dev/sda5 /mnt
grub-install --root-directory=/mnt /dev/sda

如果您有單獨的引導分區,請記住在掛載後也將其掛載/mnt

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