Last active
February 3, 2024 18:21
-
-
Save jeremyb31/392003b53981c84d6c14767aed675d73 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/sda6 /mnt | |
sudo mount /dev/nvme0n1p1 /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 install --reinstall 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