LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - General
User Name
Password
Linux - General This Linux forum is for general Linux questions and discussion.
If it is Linux Related and doesn't seem to fit in any other forum then this is the place.

Notices


Reply
  Search this Thread
Old 04-20-2015, 04:32 PM   #1
69Rixter
Member
 
Registered: Jan 2014
Location: central Ohio
Distribution: BionicPup 8 & LM 19.1X
Posts: 320

Rep: Reputation: 10
Multiple O.S's on 1 CD/DVD


Afternoon:

I have Xubuntu 12.04 (1.2Gb) burnt on a 4.9Gb DVD. I'd like to put at least 1 more O.S on this DVD and be able to select which O.S I'd run. How do I accomplish this?
Thanx:
Rick
 
Old 04-21-2015, 02:34 AM   #2
ardvark71
LQ Veteran
 
Registered: Feb 2015
Location: USA
Distribution: Lubuntu 14.04, 22.04, Windows 8.1 and 10
Posts: 6,282
Blog Entries: 4

Rep: Reputation: 842Reputation: 842Reputation: 842Reputation: 842Reputation: 842Reputation: 842Reputation: 842
Quote:
Originally Posted by 69Rixter View Post
How do I accomplish this?
Hi...

I don't think you do. I've never heard of this being possible.

However, I think you can from a USB flash drive, see here.

Regards...
 
Old 04-21-2015, 02:53 AM   #3
veerain
Senior Member
 
Registered: Mar 2005
Location: Earth bound to Helios
Distribution: Custom
Posts: 2,524

Rep: Reputation: 319Reputation: 319Reputation: 319Reputation: 319
It might be possible but you would have to make new iso9660 filesystem plus edit each distro's scripts. It might be very difficult depending on your skill. Perhaps no ready made solution is available yet for this. You can make multi-distros on usb as said in prev post.
 
Old 04-21-2015, 07:51 AM   #4
maples
Member
 
Registered: Oct 2013
Location: IN, USA
Distribution: Arch, Debian Jessie
Posts: 814

Rep: Reputation: 265Reputation: 265Reputation: 265
As far as I know, you can't burn to a DVD once you've already finished burning it.

I've never messed with this, but you may be able to make an ISO image with several "partitions" (if that's even possible on a DVD, I don't know) and a bootloader that lets you select which partition to boot from.

I know that there are some projects out there that seem to do something similar, like the Ultimate Boot CD (NOT the Windows one). However, I don't know how they have everything set up, their website might be helpful.

Hope this helps!
 
Old 04-21-2015, 08:04 AM   #5
rokytnji
LQ Veteran
 
Registered: Mar 2008
Location: Waaaaay out West Texas
Distribution: antiX 23, MX 23
Posts: 7,110
Blog Entries: 21

Rep: Reputation: 3474Reputation: 3474Reputation: 3474Reputation: 3474Reputation: 3474Reputation: 3474Reputation: 3474Reputation: 3474Reputation: 3474Reputation: 3474Reputation: 3474
http://www.sarducd.it/
 
Old 04-21-2015, 08:30 AM   #6
yancek
LQ Guru
 
Registered: Apr 2008
Distribution: Slackware, Ubuntu, PCLinux,
Posts: 10,501

Rep: Reputation: 2489Reputation: 2489Reputation: 2489Reputation: 2489Reputation: 2489Reputation: 2489Reputation: 2489Reputation: 2489Reputation: 2489Reputation: 2489Reputation: 2489
I don't know if you can do it after you have already burned one image to the DVD. You can definitely do it, by it I mean putting multiple Live CDs on a DVD. You are limited by the size of the DVD obviously and it is considerably easier to do it on a flash drive.

If you have Xubuntu, take a look to see if you have grub-mkrescue avaiable as it is about as easy as you will find and should work on Ubuntu derivatives. You can create a directory and put your Ubuntu derived iso files directly in it, then create a boot directory with a grub sub-directory and then manually create a grub.cfg file with proper entries and then run the grub-mkrescue.

Code:
sudo grub-mkrescue --output=mkrescue.iso /iso
The command above created a bootable iso with Ubuntu and Peppermint iso files in the iso directory. Use the standard menuentry to boot the iso directly, one example below:

Quote:
menuentry "Ubuntu Live 14.04 32bit" {
loopback loop /ubuntu-14.04.2-desktop-i386.iso
linux (loop)/casper/vmlinuz boot=casper iso-scan/filename=/ubuntu-14.04.2-desktop-i386.iso quiet splash --
initrd (loop)/casper/initrd.lz
}
You can't create partitions on a CD or DVD but you are limited only by the size of the CD/DVD. Obviously, read-only filesystems so no changes can be made. You can also do this with Grub Legacy if you include the stage2_eltorito file in the Grub directory and use the "mkisofs" or "genisoimage" commands. Using Grub2 is similar but there is not stage2_eltorito. Last time I use it I believe the file was named eltorito.img although I don't seem to find it on Ubunt/Mint systems?

Good luck.
 
Old 04-21-2015, 08:31 AM   #7
veerain
Senior Member
 
Registered: Mar 2005
Location: Earth bound to Helios
Distribution: Custom
Posts: 2,524

Rep: Reputation: 319Reputation: 319Reputation: 319Reputation: 319
Quote:
Originally Posted by maples View Post
I've never messed with this, but you may be able to make an ISO image with several "partitions" (if that's even possible on a DVD, I don't know) and a bootloader that lets you select which partition to boot from.
CD/DVD have no option of partitions. Usually they boot based on eltorito specification. And mkisofs creates one with usually single or many boot sectors (alternative boot images). Usually isolinux is used and it can load a kernel and optional initrd/initramfs. So one would have to alter both layout as well as these initrds and much more.
 
Old 04-21-2015, 05:48 PM   #8
replica9000
Senior Member
 
Registered: Jul 2006
Distribution: Debian Unstable
Posts: 1,125
Blog Entries: 2

Rep: Reputation: 260Reputation: 260Reputation: 260
I did this a couple times with some Sidux discs. I had combined multiple CDs into one DVD. The Sidux live discs used Grub to boot (I think) squashfs images from the disc. It was just a matter of throwing all of the images with a modified grub on to DVD. I don't remember all of steps necessary at the moment, and the method wasn't compatible with all live CDs. Most I can offer is the iso I had created for study.
 
Old 04-22-2015, 12:19 AM   #9
veerain
Senior Member
 
Registered: Mar 2005
Location: Earth bound to Helios
Distribution: Custom
Posts: 2,524

Rep: Reputation: 319Reputation: 319Reputation: 319Reputation: 319
In my system Grub as a eltorito boot image doesn't works though it works fine in Qemu VM.

Also some versions of syslinux (isolinux) has the same problem. Best to test which version works with your system. It would have been great if all versions worked perfectly. But perhaps most system manufacturers target Microsoft Windows by default for desktop/laptop.
 
Old 04-25-2015, 08:21 PM   #10
69Rixter
Member
 
Registered: Jan 2014
Location: central Ohio
Distribution: BionicPup 8 & LM 19.1X
Posts: 320

Original Poster
Rep: Reputation: 10
MULTIPLE O.S's on 1 CD/DVD

Want to THANK everyone who replied. WOW, quite a degree of difference in the reply's, but hey, that's how we learn(?) ROCKY, thanx for the post, but I know how to do multiple O.S.'s on a jumpdrive. I've got some CD/DVD's hanging around I thought I use them if possible. Anyway, my laptop's history, so when I get anonther/new one, then I'll burn some good diagnostic tools to a CD/DVD. Right now, I don't have any space free on any of my jumpdrives since that damn laptop fried 3 of them.
Stay Sharp:
Rick
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Multiple DVD burn khaledhu Programming 1 09-25-2012 05:23 AM
back-up to multiple DVD's SaintDanBert Linux - Desktop 2 06-01-2012 05:24 PM
combining multiple CD's into a DVD (SUSE 10.3) 1kyle SUSE / openSUSE 3 03-02-2008 12:40 AM
Multiple Live CD to DVD? NLZX Linux - General 5 08-02-2007 09:38 PM
Burning DVD using multiple DVD writers desmo Linux - Software 5 04-12-2006 05:15 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - General

All times are GMT -5. The time now is 07:58 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration