LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   Burning ISO in Debian Libranet with cdrecord or toast??? (https://www.linuxquestions.org/questions/linux-software-2/burning-iso-in-debian-libranet-with-cdrecord-or-toast-123522/)

GraphMatix 12-07-2003 10:04 AM

Burning ISO in Debian Libranet with cdrecord or toast???
 
How in the hell do i get this to work every time I try to burn it goes through the whole process and then there is nothing burned.

this is the command i use:
$ cdrecord -v dev=0,0,0 myiso.iso

this is what it prints :
fifo had 6654 puts and 6654 gets
fifo was 0 times empty and 6538 times full, min fill was 90%

Do I need to use the disk at once mode?
Please help if you can.
limmid@sbcglobal.net

fancypiper 12-07-2003 12:04 PM

What is the output of

cdrecord -scanbus

When I burn, I specify the burning speed as well.

# 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
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


All times are GMT -5. The time now is 06:33 PM.