LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 05-26-2009, 10:51 AM   #1
vonelli
Member
 
Registered: Mar 2008
Posts: 33

Rep: Reputation: 1
Making CD or DVD bootable


I need to make a bootable DVD, but up to now I could not find away to do it. Is possible? do I need additional software? At present I am using Fedora 10. I will appreciate the help
Vinny
 
Old 05-26-2009, 11:41 AM   #2
saikee
Senior Member
 
Registered: Sep 2005
Location: Newcastle upon Tyne UK
Distribution: Any free distro.
Posts: 3,398
Blog Entries: 1

Rep: Reputation: 113Reputation: 113
Ever wonder into a Bash shell? The command mkisofs is to make an iso file. The Grub's stage2_Eltorito is for booting off a CD or DVD.

The Grub Manual has the steps of putting GRub in a CD. This thread may be of interest to you.
 
Old 05-26-2009, 04:31 PM   #3
arizonagroovejet
Senior Member
 
Registered: Jun 2005
Location: England
Distribution: openSUSE, Fedora, CentOS
Posts: 1,094

Rep: Reputation: 198Reputation: 198
This is how I make a bootable CD that contains just enough to boot a machine in order to start a network installation. I do this with SLED 11 but maybe it's true for Fedora too.

Make a directory to hold the files:

$ mkdir bootcd

In to that directory copy the contents of the directory boot/i586/loader that's on the installation DVD.

$ cd bootcd

Edit the files isolinux.cfg and messages to contain what I want. Then create an iso:

$ mkisofs -o ../bootcd.iso -b isolinux.bin -c boot.cat -no-emul-boot -boot-load-size 4 -boot-info-table .

The burn the bootcd.iso to a CD.

You might get better answers if you explain exactly what it is that you want your bootable CD to do.
 
Old 05-26-2009, 04:48 PM   #4
soleilarw
Member
 
Registered: Apr 2009
Posts: 107

Rep: Reputation: 19
Fedora should have installed k3b, unless you disabled KDE applications. k3b does an excellent job at creating CD's and DVD's, allowing bootable disks as well. Tons of other options available.

Linux Archive

Last edited by soleilarw; 06-18-2009 at 04:14 AM.
 
Old 05-26-2009, 05:25 PM   #5
linus72
LQ Guru
 
Registered: Jan 2009
Location: Gordonsville-AKA Mayberry-Virginia
Distribution: Slack14.2/Many
Posts: 5,573

Rep: Reputation: 470Reputation: 470Reputation: 470Reputation: 470Reputation: 470
You could also use 2 scripts found in any slax distro-slax/goblinx/wolvix and in the "linux-live-scripts" ( http://www.linux-live.org/ ) It's gotta alot of nice stuff in there.

The scripts are "make_iso.sh" and "make_iso.bat", one for Linux and one for Dindows.

The iso layout must contain a "boot" folder with a "isolinux" folder inside.

Basically add kernel/initrd from whatever linux and edit isolinux.cfg and use scripts to create bootable iso.

Just put the 2 scripts in the "boot" folder, make executable, double click and choose
"run in terminal" and then give it a name that ends in iso like mycd.iso, not mycd

You can also choose "run" and it will make a iso named "boot.iso" in the top folder.

If you have anything in the folder with the boot, and linux folders it will be included
in the iso-

Also, you can "cd" into the boot folder, make make_iso.sh executable with "chmod +x make_iso.sh", and then invoke with "./make_iso.sh"
The .bat file just double-click.

You can also netinstall Fedora-10 with netbootcd-3.0-usb or any major distro-
( http://multidistro.com/downloads/off...icialusbs.html )
 
Old 05-26-2009, 07:11 PM   #6
jefro
Moderator
 
Registered: Mar 2008
Posts: 21,981

Rep: Reputation: 3625Reputation: 3625Reputation: 3625Reputation: 3625Reputation: 3625Reputation: 3625Reputation: 3625Reputation: 3625Reputation: 3625Reputation: 3625Reputation: 3625
Depends on what you want booted. If linux then it is just as easy to download almost any distro iso.


I sometimes copy the raw contents of a floppy and burn it as track one.
 
Old 05-28-2009, 08:37 PM   #7
vonelli
Member
 
Registered: Mar 2008
Posts: 33

Original Poster
Rep: Reputation: 1
Making CD or DVD bootable

Thank you all,
You give me few inputs that I need to work on. I understand that if I need to make an iso file then burn the CD, the CD will be automatically closed and no other files can be added, in my case I would need to keep open so more file can be added. Among the answer I got it was suggested that I give info of how I will use the bootable CD, which I should had supply in the first place.
I Have an old program "PCAD" used to capture schematics and layout PC boards PCAD only work with DOS at present time I am using "geda" with Fedora, but I still need to keep PCAD for old boards.
 
Old 05-28-2009, 08:49 PM   #8
vonelli
Member
 
Registered: Mar 2008
Posts: 33

Original Poster
Rep: Reputation: 1
Making CD or DVD bootable

Quote:
Originally Posted by jefro View Post
Depends on what you want booted. If linux then it is just as easy to download almost any distro iso.


I sometimes copy the raw contents of a floppy and burn it as track one.
Thank you,

I need to boot DOS but I want to keep the CD open so more files can be added. What would be the procedure to copy the contents from a DOS bootable CD
 
Old 05-29-2009, 02:36 AM   #9
saikee
Senior Member
 
Registered: Sep 2005
Location: Newcastle upon Tyne UK
Distribution: Any free distro.
Posts: 3,398
Blog Entries: 1

Rep: Reputation: 113Reputation: 113
Quote:
I need to boot DOS but I want to keep the CD open so more files can be added. What would be the procedure to copy the contents from a DOS bootable CD
Several Live CD have FreeDos packaged inside as one of the several boot options. Think Linux Rescue CD is one.

Also any Dos floppy can be burn into a CD in emulation mode.
 
Old 05-29-2009, 02:50 AM   #10
arizonagroovejet
Senior Member
 
Registered: Jun 2005
Location: England
Distribution: openSUSE, Fedora, CentOS
Posts: 1,094

Rep: Reputation: 198Reputation: 198
Quote:
Originally Posted by vonelli View Post
Thank you,

I need to boot DOS but I want to keep the CD open so more files can be added. What would be the procedure to copy the contents from a DOS bootable CD
Why didn't you say that at the start of the thread?!
I'm failing to see why you need a bootable CD at all now. It sounds like what you actually want to achieve is to be able to run a DOS program without installing DOS on your computer in place of Linux.

See if your software will run under DOSBox.
 
Old 06-01-2009, 07:25 PM   #11
vonelli
Member
 
Registered: Mar 2008
Posts: 33

Original Poster
Rep: Reputation: 1
Quote:
Originally Posted by saikee View Post
Ever wonder into a Bash shell? The command mkisofs is to make an iso file. The Grub's stage2_Eltorito is for booting off a CD or DVD.

The Grub Manual has the steps of putting GRub in a CD. This thread may be of interest to you.
Thank you so much for the lead
Vinny
 
Old 06-01-2009, 07:26 PM   #12
vonelli
Member
 
Registered: Mar 2008
Posts: 33

Original Poster
Rep: Reputation: 1
Quote:
Originally Posted by arizonagroovejet View Post
Why didn't you say that at the start of the thread?!
I'm failing to see why you need a bootable CD at all now. It sounds like what you actually want to achieve is to be able to run a DOS program without installing DOS on your computer in place of Linux.

See if your software will run under DOSBox.
Thank you for the info.
Vinny
 
  


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 Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
LXer: Making a Bootable USB from DVD image LXer Syndicated Linux News 0 10-17-2008 11:20 AM
making a bootable DVD with RHEL 5.2 or Oracle Unbreakable Linux 5.2 naindejardin Red Hat 1 07-27-2008 08:16 PM
Making Bootable DVD From Windows Beugul Slackware - Installation 9 07-10-2007 02:47 PM
Making Linux DVD bootable yunus.raza Linux - General 5 02-15-2007 07:05 AM
Making bootable Suse 9.3 DVD from 5-CD iso parsek77 SUSE / openSUSE 1 06-15-2005 11:16 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 05:25 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