(10-Aug-2020, 03:17 PM)agent_kith Wrote: Almost certain you don't need to install grub_efi... Because Ubuntu will detect your system is using EFI and install the correct bootloader.
Correct to chroot to /target. That's the correct directory.
Once you've done that, can u run
Code:sudo mount /dev
and then run this command again (ignore grub-mkconfig for now):
Code:sudo grub-install --target=x86_64-efi --bootloader-id=grub_uefi --recheck grub-mkconfig -o /boot/grub/grub.cfg
Hi there,
Here is the command I issued and the output:
snakeoil@snakeoil:/$ sudo chroot /target mount /dev
mount: can't find /dev in /etc/fstab
snakeoil@snakeoil:/$
Content of /target/etc/fstab:
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point> <type> <options> <dump> <pass>
# / was on /dev/sda2 during installation
UUID=6bf65c47-9647-4cec-95e2-a768d459f544 / ext4 errors=remount
-ro 0 1
# /boot/efi was on /dev/sda1 during installation
UUID=D721-9A00 /boot/efi vfat umask=0077 0 1
# swap was on /dev/sda3 during installation
UUID=bf78d7ab-0034-4ee9-8cf6-a4decad376a6 none swap sw
0 0
Thanks for your help.
SK