I know that there are plenty of topics already and I've tried to follow them, but I'm still stuck and can't install the GRUB. I've tried to follow the steps from the accepted answer in this post.
I have the following partitions:
/dev/mmcblk1p1
- EFI Syste Partition fat32 512mb/dev/mmcblk1p2
- ext4 26.68GB/dev/mmcblk1p3
- linux-swap 1.94GB
I executed these commands:
$ sudo mount /dev/mmcblk1p2 /mnt
$ sudo mount /dev/mmcblk1p1 /mnt/boot/efi
$ for i in /dev /dev/pts /proc /sys /run; do sudo mount -B $i /mnt$i; done
$ sudo chroot /mnt
$ grub-install /dev/mmcblk1
$ update-grub
But I am getting the following errors:
grub-install: warning: this GPT partition label contains no BIOS Boot
Partition; embedding won't be possible. grub-install: warning:
Embedding is not possible. GRUB can only be installed in this setup by
using blocklists. However, blocklists are UNRELIABLE and their use is
discouraged.. grub-install: error: will not proceed with blocklists.
UEFI: KingstonDataTraveller
to boot in UEFI-mode from your USB-stick. – mook765 Mar 06 '18 at 11:51BIOS-boot
-partition if you keep GPT-partition-table or you change to MBR-partitioning and reinstall. – mook765 Mar 06 '18 at 12:34