Trying to boot several Linux distros directly from grub, none works. I am receiving:
I did copy the full path to the isofiles from the command line, to be sure no type would happen. I also remembered to update-grub. Open to suggestions.
Error: File not found
Error: No such disk
Here is my /etc/grub.d/40_custom file:Error: You need to load the kernel first
Code:
menuentry "Lubuntu 16.04 ISO" {
set isofile="/media/34GB/videos/lubuntu-16.04.6-desktop-amd64.iso"
loopback loop (hd0,6)$isofile
linux (loop)/casper/vmlinuz boot=casper iso-scan/filename=$isofile noprompt noeject
initrd (loop)/casper/initrd
}
Code:
menuentry "Ubuntu 16.04.5 ISO" {
set isofile="/media/34GB/videos/ubuntu-mate-16.04.6-desktop-amd64.iso"
loopback loop (hd0,6)$isofile
linux (loop)/casper/vmlinuz boot=casper iso-scan/filename=$isofile noprompt noeject
initrd (loop)/casper/initrd
}
Code:
menuentry "Ubuntu 10.04 Lucid Lynx ISO" {
set isofile="/media/7.0GB/ubuntu-10.04-desktop-amd64.iso"
loopback loop (hd1,1)$isofile
linux (loop)/casper/vmlinuz boot=casper iso-scan/filename=$isofile noprompt noeject
initrd (loop)/casper/initrd
}
I did copy the full path to the isofiles from the command line, to be sure no type would happen. I also remembered to update-grub. Open to suggestions.

