Fedora Linux Support Community & Resources Center
Sections ›› Home | Forums | Guidelines | Forum Help | Fedora FAQ | Fedora News 

Go Back   FedoraForum.org > Fedora Support > Live Media (Live CD/DVD/USB)

Live Media (Live CD/DVD/USB) Discussions about the Fedora Live Media (not the installation media) and any problems you may have with them.

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 2009-11-01, 11:47 AM CST
MilesT Offline
Registered User
 
Join Date: Jun 2008
Posts: 10
windows_vistafirefox
Burn multiple live isos on one DVD

How would I burn both 32- and 64-bit Fedora 12 Live isos onto one DVD so that I can select either at boot?
Reply With Quote
  #2  
Old 2009-11-01, 03:25 PM CST
Dies Offline
Registered User
 
Join Date: Oct 2006
Posts: 3,948
linuxubuntufirefox
You wouldn't.
Reply With Quote
  #3  
Old 2009-11-01, 03:35 PM CST
nimd4's Avatar
nimd4 Offline
Registered User
 
Join Date: Jan 2009
Location: Belgrade, Serbia & Nicosia, Cyprus
Age: 32
Posts: 2
windows_xp_2003firefox
Quote:
Originally Posted by Dies View Post
You wouldn't.
Um, of course it could be done..
Reply With Quote
  #4  
Old 2009-11-01, 03:39 PM CST
Dies Offline
Registered User
 
Join Date: Oct 2006
Posts: 3,948
linuxubuntufirefox
Quote:
Originally Posted by nimd4 View Post
Um, of course it could be done..
Care to lay out the process for us?

No?

Then I don't see your point, other than to say nothing is impossible...
Reply With Quote
  #5  
Old 2009-11-01, 03:45 PM CST
nimd4's Avatar
nimd4 Offline
Registered User
 
Join Date: Jan 2009
Location: Belgrade, Serbia & Nicosia, Cyprus
Age: 32
Posts: 2
windows_xp_2003firefox
Ah come on, man.. I just didn't like the no that you'd put down. Isn't here like a (cd/dvd) boot manager, or something, that could do this (theoretically )?..
Reply With Quote
  #6  
Old 2009-11-01, 04:00 PM CST
Dies Offline
Registered User
 
Join Date: Oct 2006
Posts: 3,948
linuxubuntufirefox
Quote:
Originally Posted by nimd4 View Post
Ah come on, man.. I just didn't like the no that you'd put down. Isn't here like a (cd/dvd) boot manager, or something, that could do this (theoretically )?..
I agree it does seem kind of crappy to just say "Nope, can't be done". But sometimes it is the answer that makes the most sense.

Theoretically, I guess you would just need to customize the bootloader to allow you to select the kernel you want then have that kernel mount the right "root" filesystem. Seems like a whole lot work just to avoid two disks.
Reply With Quote
  #7  
Old 2009-11-01, 04:11 PM CST
kyryder Offline
Registered User
 
Join Date: Mar 2009
Location: /home/In_my_Head
Posts: 313
linuxfedorafirefox
hmm I wonder if you could do this with revisor.
Reply With Quote
  #8  
Old 2009-11-01, 05:13 PM CST
MilesT Offline
Registered User
 
Join Date: Jun 2008
Posts: 10
windows_vistafirefox
well, I only ask because I have a bunch of DVD-Rs and I'd rather not use the 4gb of space on it for a 700mb iso, I should be able to burn 5 isos per disc, allowing a 5in1 live cd (f12 32&64, f11 32&64, slitaz, etc)
Reply With Quote
  #9  
Old 2009-11-01, 07:28 PM CST
kyryder Offline
Registered User
 
Join Date: Mar 2009
Location: /home/In_my_Head
Posts: 313
linuxfedorafirefox
I agree with Dies, seems like a lot of work for a couple of cd's
Reply With Quote
  #10  
Old 2009-11-15, 04:52 PM CST
pedora Offline
Registered User
 
Join Date: Jul 2007
Posts: 228
windows_xp_2003firefox
Could you do this on a usb stick?

I tried but failed. It was a lot of work and I guess I gave up for now. It involved creating some partitions and the required files for the boot loader.

I liked the idea of having iso files in a multi-boot set up since the boot up is faster than the CD/DVD but it seemed complicated when k3b or brasero can create an iso live CD quite quickly in comparison. However, the usb stick with live distros is still neat, I think.
Reply With Quote
  #11  
Old 2009-11-15, 05:04 PM CST
Dies Offline
Registered User
 
Join Date: Oct 2006
Posts: 3,948
linuxfedorafirefox
Quote:
Originally Posted by pedora View Post
Could you do this on a usb stick?
It would be a lot easier on a USB stick since you could just install Grub2 to it then try to use the loopback option. Of course this still wouldn't work for Fedora, at least not yet. But it should work with Debian and other distros that have a "fromiso" or similar boot option.
Reply With Quote
  #12  
Old 2009-11-15, 05:09 PM CST
beaker_'s Avatar
beaker_ Offline
Registered User
 
Join Date: Nov 2008
Location: Canada
Age: 35
Posts: 657
linuxfedorafirefox
If grub 2 baulks at you, try grub for dos, an ext hard drive, and copy your os's as iso or raw images. Works good enough.
Reply With Quote
  #13  
Old Yesterday, 01:55 AM CST
kaafree Offline
Registered User
 
Join Date: Feb 2006
Location: Moscow, Russia
Age: 35
Posts: 27
linuxfedorafirefox
Well, I am subscriber of Linux Format magazine. They ship DVD with every issue, that contains several different distributions (some are live, some are not). What is important, this DVD is bootable and one can easily select needed distro from grub menu. I am not so advanced but they use syslinux tools for that. And I guess they do not use grub2, as those dvds are shipped from ancient times.
__________________
Copy software legally - use free software! Visit Free Software Foundation for details.

Linux user #235447
Reply With Quote
  #14  
Old Yesterday, 05:28 AM CST
Gödel's Avatar
Gödel Online
Registered User
 
Join Date: Jul 2009
Location: London,England
Posts: 621
linuxfedorafirefox
You need a 2GB usb stick (or bigger), insert it, unmount (eg right-click desktop icon) and assuming it's /dev/sdb do this as root:

dd if=/dev/zero of=/dev/sdb bs=512 count=1

parted /dev/sdb mklabel msdos
parted /dev/sdb mkpartfs p fat32 0% 50%
parted /dev/sdb mkpartfs p fat32 50% 100%

Then label the partitions (install mtools if necessary):

mlabel -i /dev/sdb1 ::LIVE1
mlabel -i /dev/sdb2 ::LIVE2


REMOVE USB STICK AND REINSERT (So both partitions get mounted in /media)

mkdir /mnt/iso

mount -o loop <path_to>/Fedora-12-i686-Live.iso /mnt/iso
cp -r /mnt/iso/* /media/LIVE1
umount /mnt/iso

mount -o loop <path_to>/Fedora-12-x86_64-Live.iso /mnt/iso
cp -r /mnt/iso/* /media/LIVE2
umount /mnt/iso

grub-install --root-directory=/media/LIVE1 /dev/sdb

vi /media/LIVE1/boot/grub/grub.conf

Create (new file) grub.conf with these entries:

Quote:
title F12 LiveCD i686
root (hd0,0)
kernel /isolinux/vmlinuz0 ro root=LABEL=LIVE1 rootfstype=auto liveimg quiet rhgb selinux=0
initrd /isolinux/initrd0.img

title F12 LiveCD x86_64
root (hd0,1)
kernel /isolinux/vmlinuz0 ro root=LABEL=LIVE2 rootfstype=auto liveimg quiet rhgb selinux=0
initrd /isolinux/initrd0.img

And unmount/eject the usb stick (eg right click on gnome desktop icon)

The percentages for the partitions can be adjusted as appropriate, you'll need about 1GB per iso image, so on a 4GB stick you could create 4 partitions 0%-25%-50%-75%-100% and put 4 isos on. For more than 4 you need an extended partition (the 'p' in the mkpartfs command creates primary partitons), I'll leave that as an exercise.


Last edited by Gödel; Yesterday at 05:48 AM CST. Reason: better to label partitions directly after creating
Reply With Quote
  #15  
Old Today, 06:03 AM CST
Dangermouse's Avatar
Dangermouse Offline
Community Manager
 
Join Date: Aug 2007
Location: London Postbox (the red one)
Age: 44
Posts: 2,380
linuxfedorafirefox
Thanks Gödel,

Just tried your excellent guide, works like a charm

Dave
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

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

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
live cd burn error rice4lunch General Support 3 2008-11-29 04:09 PM CST
How-To: Download Fedora ISOs from multiple mirrors at once twanj Guides & Solutions (No Questions) 23 2007-08-31 01:14 PM CDT
What is needed to burn ISOs ? OralDeckard General Support 3 2007-01-23 02:07 PM CST
How do I burn ISOs? Genecks Software 2 2006-07-04 01:39 PM CDT
can't burn FC4 PPC isos on i386 Clunixchit Mac & PPC 3 2005-12-12 09:21 AM CST

Automatic Translations (Powered by Powered by Google):
Afrikaans Albanian Arabic Belarusian Bulgarian Catalan Chinese Croatian Czech Danish Dutch English Estonian Filipino Finnish French Galician German Greek Hebrew Hindi Hungarian Icelandic Indonesian Italian Japanese Korean Latvian Lithuanian Macedonian Malay Maltese Norwegian Persian Polish Portuguese Romanian Russian Serbian Slovak Slovenian Spanish Swahili Swedish Taiwanese Thai Turkish Ukrainian Vietnamese Yiddish

All times are GMT -7. The time now is 07:26 AM CST.

TopSubscribe to XML RSS for all Threads in all ForumsFedoraForumDotOrg Archive
Hosting provided by ThePlanet



All trademarks, and forum posts in this site are property of their respective owner(s).

FedoraForum.org is privately owned and is not directly sponsored by the Fedora Project or Red Hat, Inc.

Privacy Policy | Term of Use | Posting Guidelines | Archive | Contact | Founding Members
Designed By Ewdison Then | Powered by vBulletin ©2000-2009, Jelsoft Enterprises Ltd.
FedoraForum is Powered by Open Source Projects and Products
Translations delivered by vBET