Last active
June 7, 2019 17:41
-
-
Save JonathanReeve/18f76b81f4ec1880f8002f981a107d53 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 su | |
mount /dev/nvme0n1p5 /mnt | |
mount /dev/nvme0n1p1 /mnt/boot/efi | |
mount -t proc proc /mnt/proc | |
mount -t sysfs sys /mnt/sys | |
mount -o bind /dev /mnt/dev | |
mount -t devpts pts /mnt/dev/pts/ | |
pacman -Sy | |
pacman -S efibootmgr gosfstools grub | |
modprobe efivarfs | |
chroot /mnt | |
mount -t efivarfs efivarfs /sys/firmware/efi/efivars | |
grub-install --target=x86_64-efi --efi-directory=/boot/efi --bootloader-id=manjaro --recheck | |
update-grub |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment