LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   cd burning (https://www.linuxquestions.org/questions/linux-newbie-8/cd-burning-60963/)

andym 05-21-2003 07:14 AM

cd burning
 
does anyone know any good (very easy to use0 cd burning software for CD-R and RW's so i can write stuff with ease that windows can read

thanks

andy

j-ray 05-21-2003 07:34 AM

personally i like kreatecd from the kde. but there are a lot...

here's a list, u may check your distros site, too
http://www.kefk.net/linux/Anwendunge...ding/index.asp

cheers, jens

yowwww 05-21-2003 07:36 AM

k3b:
http://k3b.sourceforge.net/

fsbooks 05-21-2003 08:05 AM

I kind of like the following script. It beats a GUI hands down.

:#!/bin/bash
dir=`dirname $1`
path=`basename $1`
cd "$dir"
mkisofs -l -L -R -uid 0 -gid 0 -pad "$path" | cdrecord -v dev=2,0,0 -dao speed=8 -data -eject

Note that you may prefer different options (speed?; Juliet options?) and certainly may have to point dev= to the proper location.

If you really feel like a GUI, webmin works pretty well.

MasterC 05-21-2003 11:57 AM

Basically, any of them should be creating iso9660 filesystems by default
which is the standard in CDROM filesystems. So once you pick
the one you like out of the plethora of options, make sure that
you set in the options to use iso9660 (if that's an option).
FYI:
most CD burning apps in linux are simply front ends for CDRecord and cdrdao (combined usually with mkisofs).

Cool

fancypiper 05-21-2003 12:26 PM

# CD burning info
Is it configured and what is the device? Command this to find out:
cdrecord -scanbus
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


All times are GMT -5. The time now is 11:53 AM.