Red HatThis forum is for the discussion of Red Hat Linux.
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
I'm having trouble burning CD's. First I tried gToaster, then I tried with the command line using cdrecord, but neither worked. Basically, I click 'record' from gToaster but it doesn't do anyting. I really don't know what to try, I did 'cdrecord -scanbus' from the shell and this was my o/p:
I tried gtoaster once and could never get it to work. I've had the best luck using k3b. It just works and configures better than xcdroast, eroaster, and gtoaster.
Distribution: Fedora Core 6 Gentoo WinXP Home Edition
Posts: 5,139
Thanked: 0
Can you do stuff from the command line successfully?
# CD burning copying ripping info
Is it configured and what is the device? Command this to find out: cdrecord -scanbus Adding an IDE CD-Writer to Linux Linux DVD HOWTO CD Writing HOWTO Burning CDs on Linux
# Burn an ISO to disk cdrecord -v speed=<burning speed> dev=<your device> /path/to/foo.iso
# Burn from disk to disk cdrecord -v dev=<your device> speed=<burning speed> -isosize /dev/cdrom
# ISO information
isoinfo -i -d /dev/cdrom
# Generate an ISO from a directory.
mkisofs -vrTJUV "Label" -o foo.iso /path/to/directory
# Generate an ISO from a CD
dd if=/dev/cdrom of=foo.iso
# cdparanoia - search for a drive with reporting of autosense:
cdparanoia -vsQ
# Rip a complete audio CD with cdparanoia
cdparanoia -B "1-" 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=<burning speed> dev=<your device> /path/to/*.wav
# Erase a CDRW cdrecord -v dev=<your device> speed=<burning speed> blank=fast
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.