David from Grafton asked if it's possible to run multiple Live CD images off a single DVD. A bit of Googling turned up these articles:
MultiCD Builds a Multi-boot CD / DVD With Many Different Linux Distributions And / Or Utilities
Let us know if either is helpful, David.
Comments
Creating a Multi-Boot DVD
I actually ended up using GRUB2 to take advantage of its 'loopback' command to gain access to the contents of the CD images that are just in ISO files on the DVD.
For example one of the CD images on the DVD was the Ubuntu 10.04 "Lucid Lynx" Desktop i386 Live/Install CD <http://www.ubuntu.com/>. The following is its GRUB2 entry in /boot/grub/grub.cfg on the DVD:
menuentry "Ubuntu 10.04 Lucid Lynx Desktop i386 Live/Install CD" {
loopback loop /images/ubuntu-10.04-desktop-i386.iso
linux (loop)/casper/vmlinuz file=/cdrom/preseed/ubuntu.seed boot=casper iso-scan/filename=/images/ubuntu-10.04-desktop
-i386.iso noeject noprompt quiet splash
initrd (loop)/casper/initrd.lz
}
Simple enough...
I also put the following on the same DVD:
and a couple of other things but the main ones are listed.
Then I filled the rest of the CD with Free Software for MacOSX and Windows
See: http://lugune.dyndns.org/html/lmw.html
The following is the shell script I wrote to install GRUB2 onto the DVD image:
#!/bin/sh
#(c) 2010 David Joshua Geary Licence: GNU GPLv3+
NAME="multiboot-programs"
BOOT_DIR="$NAME/boot"
grub-mkimage -o $BOOT_DIR/core.img biosdisk iso9660
cat /usr/lib/grub/i386-pc/cdboot.img $BOOT_DIR/core.img > $BOOT_DIR/eltorito.img
genisoimage -o $NAME.iso -V Multiboot_DVD -r -J -no-emul-boot -b boot/eltorito.img -boot-info-table $NAME
----- David Geary