Other Help Topics :: Writing to CDRW



I have a Storix USB DVD/CDRW plugged into a USB port on a PCMCIA USB card with the DSL 4.2.1 frugal install.

I have been able to read from this drive with mnt /dev/scd0 /mnt/cdrom1

though it might have been nice if it auto mounted...

But my goal is to burn an iso image to CD, so I try:

cdrecord -v dev=/dev/scd0 dsl4-2-1.iso and I get an error something like:

Read-only file system.  Cannot open 'dev'scd0'.  Cannot open SCSI driver.

I had rebooted the system after reading an existing CD and mount does not show the CDRW mounted right now.

Quote
though it might have been nice if it auto mounted...

You can edit your fstab if you want it to do that. As far as your other troubles, did you check permissions, mount it rw instead of ro, etc.?

I thought cdrecord wants a scsi device number (something like 0,0,7) and not a device?

Try cdrecord -scanbus to see which number your drive got..

Quote
cdrecord -v dev=/dev/scd0 dsl4-2-1.iso


This is what I use:

cdrecord -v dev=0,0,0 speed=4 data dsl-4.2.1.iso

where the numbers 0,0,0 are obtained from the command

cdrecord -scanbus

Quote (roberts @ Dec. 28 2007,10:30)
Quote
cdrecord -v dev=/dev/scd0 dsl4-2-1.iso


This is what I use:

cdrecord -v dev=0,0,0 speed=4 data dsl-4.2.1.iso

where the numbers 0,0,0 are obtained from the command

cdrecord -scanbus

YES!!!!!

dev=0,0,1

Worked with a speed=4

Just downloaded another iso and trying it with speed=8 (what is reported as the speed of this CDRW drive).

THANKS!!!

Now to document it.

Next Page...
original here.