LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   burning and iso with X-CD-Roast (https://www.linuxquestions.org/questions/linux-software-2/burning-and-iso-with-x-cd-roast-57817/)

bennyp 05-02-2003 09:04 AM

burning and iso with X-CD-Roast
 
heylo, i'd like to burn my freshly aquired redhat iso's, but i'm in the dark as to how to do this from within linux. X-CD-Roast's clandestine gui isn't helping much.
thanks in advance
bennyp

acid_kewpie 05-02-2003 09:14 AM

easiest way is to do it from a terminal really

cdrecors speed=24 dev=0,0,0 -v image.iso

use cdrecord --scanbus to get the right dev= values

fancypiper 05-02-2003 09:16 AM

It seems easier to me to use an x terminal and cdrecord.

# CD burning info
Adding an IDE CD-Writer to Linux
CD Writing HOWTO
# Burn an ISO to disk
cdrecord -v speed=5 dev=0,0,0 /path/to/foo.iso
# Burn from disk to disk
cdrecord -v dev=0,0,0 speed=5 -isosize /dev/cdrom
# Generate an ISO from a directory.
mkisofs -Jr -o foo.iso /path/to/directory
mkisofs -vrTJUV "Label" -o foo.iso /path/to/directory
# Generate an ISO from a CD
dd if=/dev/cdrom of=foo.iso
Linux MP3 CD Burning mini-HOWTO
# Convert mp3 to wav with lame
for i in *.mp3; do lame --decode $i `basename $i .mp3`.wav; done
# Burn a CD from wav files
cdrecord -v -audio -pad speed=5 dev=0,0,0 /path/to/*.wav
# Erase a CDRW
cdrecord -v dev=0,0,0 speed=5 blank=fast

bennyp 05-02-2003 10:01 AM

when i do cdrecord -scanbus as root i get:
Code:

cdrecord -scanbus
Cdrecord 2.0 (i686-pc-linux-gnu) Copyright (C) 1995-2002 J?rg Schilling
cdrecord: No such file or directory. Cannot open '/dev/pg*'. Cannot open SCSI driver.
cdrecord: For possible targets try 'cdrecord -scanbus'. Make sure you are root.
cdrecord: For possible transport specifiers try 'cdrecord dev=help'.

and it's worth mentioning that X-CD-Roast is the only program out of the many i've installed that actually manages to burn cds

fancypiper 05-02-2003 10:11 AM

Make sure you have it configured correctly.

Adding an IDE CD-Writer to Linux
CD Writing HOWTO

Genesee 05-02-2003 10:13 AM

Quote:

Originally posted by fancypiper
It seems easier to me to use an x terminal and cdrecord.

fancypiper - thanks for your post - very helpful.

:cool:

jessepangburn 05-03-2003 11:31 PM

I also would like to thank fancypiper for posting those scripts :-)
Here is one suggestion for those people with spaces in their filenames or paths, change the following:
# Convert mp3 to wav with lame
for i in *.mp3; do lame --decode $i `basename $i .mp3`.wav; done
to
for i in *.mp3;do lame --decode "$i" "`basename "$i" .mp3`".wav;done

this is obvious to anyone who knows scripting, but newbs will find it helpful I hope


All times are GMT -5. The time now is 12:24 AM.