Thanks for the reply NEO. It turns out that 3 out of the 4 maxwell cd-rw's just aren't working for some reason. I am still kindof suspicious though... it doesn't seem like that should happen (plus, it works w/ windows cd creator).
Is there a way to eject the cd after one of those errors occurrs? Is that what you mean by "flushed"?
well, for now, I am using this script that I grabbed from here
http://www.tldp.org/HOWTO/CD-Writing-HOWTO.html
to check if the cd is o.k. :
#! /bin/bash
RD=/dev/scd0
for i in 32768,7 32776,32 32808,32 32958,128 33086,128 33214,128 \
33342,128 33470,32 33581,16 33598,16 33615,16 33632,16
do
old_IFS="$IFS"
IFS=","
set -- $i
IFS="$old_IFS"
OFFSET=$1
LENGTH=$2
echo "*`dd if=$RD bs=1 skip=$OFFSET count=$LENGTH 2> /dev/null`#"
done
#################################################
One more question though.... I tried to burn a data cd by piping the output of mkisofs straight to cdrecord and got this (last bit of the -v output):
Track 01: 400 MB written (fifo 4%) 4.0x. 84.72% done, estimate finish Sat Oct 26 12:00:32 2002
Track 01: 401 MB written (fifo 1%) 1.7x.cdrecord: Input/output error. write_g1: scsi sendcmd: no error
CDB: 2A 00 00 03 22 01 00 00 1F 00
status: 0x2 (CHECK CONDITION)
Sense Bytes: 70 00 03 00 00 00 00 13 00 00 00 00 0C 09 00 00
Sense Key: 0x3 Medium Error, Segment 0
Sense Code: 0x0C Qual 0x09 (write error - loss of streaming) Fru 0x0
Sense flags: Blk 0 (not valid)
cmd finished after 0.028s timeout 40s
write track data: error after 420481024 bytes
Sense Bytes: 70 00 00 00 00 00 00 13 00 00 00 00 00 00 00 00 00 00
Writing time: 698.734s
Fixating...
Fixating time: 65.863s
cdrecord: fifo had 6687 puts and 6624 gets.
cdrecord: fifo was 15 times empty and 5675 times full, min fill was 0%.
I have a 500 Mhz, 128mb system... do you think that this is too slow to handle what I tried, or is there something going wrong?
ooh well... at least it's not TOTALLY fried.
thanks again for the reply
-Adam