LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   Help with cdrecord (https://www.linuxquestions.org/questions/linux-software-2/help-with-cdrecord-66455/)

dddttt 06-18-2003 06:09 PM

Help with cdrecord
 
i have an ide-cd burner (cendyne) and using xcdroast
to burn the cds. the ide-scsi emulation works fine but
somehow i am unable to burn the cds.

the message i get is

cdrecord: Resource Temporarily unavailable OPC failed.



any help.

fancypiper 06-18-2003 07:16 PM

Is xcdroast configured correctly? Are you using the correct device and speed? Does it work with the command line cdrecord?

# 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

dddttt 06-19-2003 08:30 AM

cdrecord -scanbus gives the desired output....and
even lsmod shows me that ide-scsi module and sg
modules are being used by the same device.

the configuration seems to be ok. moreover xcdroast
doesnt proceed further i think if the ide-scsi emulation
is not working properly.

fancypiper 06-19-2003 10:11 AM

Will cdrecord do the job in the command line?

If so, you just haven't figured out how to use xcdroast.

saber41 06-19-2003 10:17 AM

Just for Grins you might want to try another application,

I prefer K3B over xcdroast, I've had better luck with it.

--saber41--


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