Okay so let me recap. I have 3 iso images, dragonized, gaming edition and cinnamon. I've been using usb image writer from my linux mint v20 to create a bootable usb.
so all the versions when show the same above error, with I realize that its caused by the default installation command
sudo grub-install --target=x86_64-efi --efi-directory=/boot/efi --bootloader-id=Garuda --force
so after the installation fails I mount run the fish command line
sudo mount /dev/sda1 /boot/efi
after successful mounting I run this command
sudo grub-install --target=x86_64-efi --efi-directory=/boot/efi --bootloader-id=Garuda --removable
which gives me the results
Installing for x86_64-efi platform.
Installation finished. No error reported.
Then I reboot and it boots up to GNU Grub 2:2, when I type in the boot command it returns an error: you need to select kernel first.
I tried following the steps for manually fixing the grub which involved
ls
set root=
insmod normal
normal
But then when it comes to selecting the kernel I get stuck.
I really want to install this linux that is why i've been trying relentlessly. even
sudo update-grub
returns
/usr/bin/grub-probe: error: failed to get canonical path of `overlay'.
I know its probably stupid but I was wondering if there is a way we could just modify the iso so that it comes with the --removable command instead of the --force
I appreciate your time. Thank you.