Click to See Complete Forum and Search --> : Burning cd's


Gogeta_44
01-31-2004, 02:14 PM
Does anyone know how to burn .iso's to disks in linux or a good app to do so.

rocketpcguy
01-31-2004, 02:18 PM
> cdrecord -scanbus
> cdrecord -v speed=16 dev=0,0,0 -eject -data image.iso

Gogeta_44
01-31-2004, 02:20 PM
I have RH9 and i need a way to burn with a gui.

jailbreaker
01-31-2004, 02:28 PM
http://k3b.sourceforge.net

DrChuck
01-31-2004, 02:33 PM
I use xcdroast on RH9 with KDE. No complaints.

Gogeta_44
01-31-2004, 02:41 PM
I have gnome not kde

bsm2001
01-31-2004, 02:58 PM
xcdroast will work in gnome also
just install.

EnigmaOne
01-31-2004, 07:03 PM
Originally posted by Gogeta_44
I have RH9 and i need a way to burn with a gui.
Not really. You have console access in RH9 such that...
Originally posted by rocketpcguy
> cdrecord -scanbus
> cdrecord -v speed=16 dev=0,0,0 -eject -data image.iso
this will work just fine.

You might want to 'man cdrecord' to see how easy it really is. IMHO, it's a bit faster too.

[edit]
As has been mentioned already, if you just don't want to deal with the console to burn CDs, then XCDRoast will work for you.
It's on your RH9 CD set.

Icarus
01-31-2004, 11:18 PM
To clear the contents of CD-RW:
cdrecord --dev=0,0,0 --blank=fast

burn the ISO to CD-R:
cdrecord --dev=0,0,0 name.iso

Copy using Disk-at-Once
cdrdao copy --device 0,0,0

Burn Audio CDs from .wav
cdrecord -v speed=X dev=0,0 -pad -audio track*.wav

Burn Data CDs without tempory storage
mkisofs -v -J -r srcdir | cdrecord -v speed=2 dev=0,0 -

Burn ISO image to disk
cdrecord -v -pad speed=4 dev=0,0,0 imagefile.iso

EnigmaOne
01-31-2004, 11:36 PM
Originally posted by mahdi
Burn Data CDs without tempory storage
mkisofs -v -J -r srcdir | cdrecord -v speed=2 dev=0,0 -

Burn ISO image to disk
cdrecord -v -pad speed=4 dev=0,0,0 imagefile.iso

Those qualify as my two favorites. :D

DarkChristian
03-04-2004, 10:42 PM
Good thread, great advice. I actually prefer command line now. :) Every day, I learn a little more... ^_^

...like my sig doesn't support html. :D

mborrill
03-05-2004, 11:41 AM
is there a cmd for creating a video cd ?;-)

Stupid Boy
05-13-2004, 06:38 PM
Originally posted by Icarus
To clear the contents of CD-RW:
cdrecord --dev=0,0,0 --blank=fast

burn the ISO to CD-R:
cdrecord --dev=0,0,0 name.iso

Copy using Disk-at-Once
cdrdao copy --device 0,0,0

Burn Audio CDs from .wav
cdrecord -v speed=X dev=0,0 -pad -audio track*.wav

Burn Data CDs without tempory storage
mkisofs -v -J -r srcdir | cdrecord -v speed=2 dev=0,0 -

Burn ISO image to disk
cdrecord -v -pad speed=4 dev=0,0,0 imagefile.iso

I'm a complete newbie at Linux.

In what directory do you type those, and do any of those characters need to be replaced with something else?

keyshawn
05-13-2004, 06:58 PM
fyi:

for the first three commands, you can do them anywhere.

the last 3 ones; you have to do it in the fdirectory hat the audio file or the ISO you're burning is in.


say you wanna burn mandrake9 [and file's name is mandrake9.iso ]

replace imagefile.iso with mandrake9.iso

the .iso stays there, but the imagefile is the name of whatever you wanna burn.

[check out the info in my signature, it will help ya a lot !]

keyshawn

psi42
05-13-2004, 07:07 PM
Originally posted by Stupid Boy
I'm a complete newbie at Linux.

In what directory do you type those, and do any of those characters need to be replaced with something else?


Okay Stupid Boy, :)

You should type them in the directory the iso is located in.

The cdrecord and mkisofs binaries will (should) be in your $PATH, so they can be run from anywhere.

You will need to replace speed=X with the speed of your drive (i.e. speed=40). Actually, you can probably omit speed= altogether, as cdrecord will then use the default speed for your drive, which 99% of the time is what you want.

And of course replace name.iso with the name of the real iso file.

:)

~psi42

Stupid Boy
05-13-2004, 09:14 PM
Ahhh...I like the command line. You don't expect your system to crash like you do with Windoze. I still think that Mac OS X is the best OS for burning CDs, but it sucks at everything else.