LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Slackware (https://www.linuxquestions.org/questions/slackware-14/)
-   -   Burning a CD in Gnome or KDE (https://www.linuxquestions.org/questions/slackware-14/burning-a-cd-in-gnome-or-kde-128815/)

apocolipse 12-25-2003 09:10 AM

Burning a CD in Gnome or KDE
 
Can anyone help me in suggesting how i can burn a CD in either Gnome Desktop or KDE Desktop? Thank you

poison 12-25-2003 09:20 AM

http://k3b.sourceforge.net

fancypiper 12-25-2003 10:04 AM

Check and see that you have it configured correctly and you can burn with command line

# 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 directoSecondry.
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 -D -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

cdrecord -v -audio -pad speed=8 dev=0,0,0 *.wav ; eject

# Erase a CDRW
cdrecord -v dev=<your device> speed=<burning speed> blank=fast


All times are GMT -5. The time now is 07:09 PM.