Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Contradicting the documentation, that `i386-pc` is the default target, on UEFI systems it is not. $ sudo grub-install --boot-directory=/boot /dev/nvme0n1 Installing for x86_64-efi platform. grub-install: error: cannot find EFI directory. So, pass `--target=i386-pc` to install GRUB in the MBR. $ sudo grub-install --target=i386-pc --boot-directory=/boot /dev/nvme0n1 Installing for i386-pc platform. Installation finished. No error reported.
- Loading branch information