LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   Burning CDs in Console (https://www.linuxquestions.org/questions/linux-software-2/burning-cds-in-console-66440/)

nemesisza 06-18-2003 05:06 PM

Burning CDs in Console
 
Hi there guys,

Can someone please let me know what programs are out there for burning CDs in console...

I need to do it remotely, via SSH as my box is located in another town and I need people to send the CDs I write to me.

Thanks

:newbie:

acid_kewpie 06-18-2003 05:17 PM

well most X front ends back on to cdrecord, and sometimes cdrdao. if ou're making data cd's then you'd also want to use mkisofs to actaully make the contents of the disc before burning it.

nemesisza 06-18-2003 05:41 PM

Thanks for your help man...
it is much appreciated

From one Chris to another...
lol
woteva
thanks again mate.


----

Chris

whansard 06-18-2003 05:44 PM

fancypiper has a bunch of simple commands for
cdrecord in his sig, sometimes. variations on
cat filename.iso|cdrecord dev=0,0,0 speed=24 -v -

nemesisza 06-18-2003 05:57 PM

thanks :)

fancypiper 06-18-2003 06:03 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=<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
# 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=<burning speed> dev=<your device> /path/to/*.wav
# Erase a CDRW
cdrecord -v dev=<your device> speed=<burning speed> blank=fast

ranger_nemo 06-18-2003 10:11 PM

I tend to recommend a script I found earlier this year, part'ly because I received minor credit for adding OGG support. [pats self on back]

http://jetblackz.freeservers.com/Installingcdcopy.html

It can copy a CD, or burn ISOs, files, or audio.


All times are GMT -5. The time now is 05:26 PM.