Last active
December 25, 2018 19:53
-
-
Save jeremyb31/2abc4bc604738d055f46f395c520fc24 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo mkdir -p /mnt/boot/efi | |
sudo mount /dev/sda7 /mnt | |
sudo mount /dev/sda1 /mnt/boot/efi | |
for i in /dev /dev/pts /proc /sys /run; do sudo mount -B $i /mnt $i; done | |
sudo chroot /mnt | |
sudo apt-get update | |
sudo apt-get install ubuntu-system-adjustments | |
apt list ubuntu-system-adjustments | |
apt install --reinstall grub-efi-amd64 grub-efi-amd64-signed | |
sudo update-grub | |
exit |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment