Re-install GRUB from Live RecoveryΒΆ
A simple way to re-install the GRUB bootloader from our Linux Recovery Tool or any Linux LiveCD, in 5 simple steps:
- Boot the Linux Live Recovery Tool.
- Mount the root
/
filesystem,/proc/
,/dev/
, and/sys/
. - Chroot into the mounted filesystem.
- Install GRUB.
- Reboot.
Example:
mount /dev/sda1 /mnt
mount -t proc none /mnt/proc
mount -o bind /dev/ /mnt/dev
mount -t sysfs sys /mnt/sys
chroot /mnt/ /bin/bash
grub-install /dev/sda
sync && reboot