Here’s another for you good people hopefully Hope you don’t mind a re-post as I tried this on the mint forums but no luck
I have a USB that I use as a multi boot stick - I’ve just added two versions of mint 64 bit to it and tried to edit the grub config file to add them, seems I’ve not quite got it right . . . . . it now just goes to a grub > prompt with some text when I try to boot off it - I assume this is an error in the last two enties but I don’t know what bit I may have got wrong -
can someone take a peek and point me in the right direction please…
# Begin /boot/grub/grub.cfg
set default=0
set timeout=8
insmod ext2
set root=(hd1,0)
menuentry "Mint 16 Cinnamon iso" {
set isofile="/iso/linuxmint-16-cinnamon-dvd-32bit.iso"
loopback loop (hd0,1)$isofile
linux (loop)/casper/vmlinuz boot=casper iso-scan/filename=$isofile noprompt noeject toram
initrd (loop)/casper/initrd.lz
}
menuentry "boot repair disk iso" {
set isofile="/iso/boot-repair-disk-32bit.iso"
loopback loop (hd0,1)$isofile
linux (loop)/casper/vmlinuz boot=casper iso-scan/filename=$isofile noprompt noeject toram
initrd (loop)/casper/initrd.lz
}
menuentry "ubuntu 12.04.2 desktop iso" {
set isofile="/iso/ubuntu-12.04.2-desktop-i386.iso"
loopback loop (hd0,1)$isofile
linux (loop)/casper/vmlinuz boot=casper iso-scan/filename=$isofile noprompt noeject toram
initrd (loop)/casper/initrd.lz
}
menuentry "linux mint 13 xfce 32bit iso" {
set isofile="/iso/linuxmint-13-xfce-dvd-32bit.iso"
loopback loop (hd0,1)$isofile
linux (loop)/casper/vmlinuz boot=casper iso-scan/filename=$isofile noprompt noeject toram
initrd (loop)/casper/initrd.lz
}
menuentry "linux mint 16 mate 64 bit iso" {
set isofile="/iso/linuxmint-16-mate-dvd-64bit.iso"
loopback loop (hd0,1)$isofile
linux (loop)/casper/vmlinuz boot=casper iso-scan/filename=$isofile noprompt noeject toram
initrd (loop)/casper/initrd.lz
}
menuentry "linuxmint 16 cinnamon dvd 64bit iso" {
set isofile="/iso/linuxmint-16-cinnamon-dvd-64bit.iso"
loopback loop (hd0,1)$isofile
linux (loop)/casper/vmlinuz boot=casper iso-scan/filename=$isofile noprompt noeject toram
initrd (loop)/casper/initrd.lz
}