I'm trying to get the Grub 40_custom file written correctly to I can boot a Gparted Live.iso. I'm putting in the code as per https://gparted.org/livehd.php (GParted Live on Hard Disk using GRUB)
This is what I've have in 40_custom:
Running sudo update-grub2 executes without errors.
Restarting, I'm presented with my Grub menu, and GParted live is the last item. I select it and get told that "/home/paul/Downloads/gparted-live-1.3.1-1-amd64.iso" doesn't exist and that the kernel has to be loaded first. I wait a few seconds and the Grub Menu is presented again.
What isn't Grub liking about the entry? I've made no typos, at least as compared to what the Gparted page says.
This is what I've have in 40_custom:
Code:
exec tail -n +3 $0 # This file provides an easy way to add custom menu entries. Simply type the # menu entries you want to add after this comment. Be careful not to change # the 'exec tail' line above. menuentry "Gparted live" { set isofile="/home/isos/gparted-live-1.3.1-1-amd64.iso" loopback loop $isofile linux (loop)/live/vmlinuz boot=live config union=overlay username=user components noswap noeject vga=788 ip= net.ifnames=0 toram=filesystem.squashfs findiso=$isofile initrd (loop)/live/initrd.img }
Restarting, I'm presented with my Grub menu, and GParted live is the last item. I select it and get told that "/home/paul/Downloads/gparted-live-1.3.1-1-amd64.iso" doesn't exist and that the kernel has to be loaded first. I wait a few seconds and the Grub Menu is presented again.
What isn't Grub liking about the entry? I've made no typos, at least as compared to what the Gparted page says.
Comment