Hi For some time now I've been backing up my own data to CDs with a CD-Recorder. To do this I've got a cron job which runs a script which creates an ISO image and drops it onto a recordable CD..... rsync -a /home/mydocuments/ /home/mybackup/ > /dev/null 2>&1 mkdir -p /tmp/backup export FILE=backup-`date +%Y%m%d`.tgz tar -cz /home/mybackup > /tmp/backup/$FILE mkisofs -r -J -o /tmp/backup.iso /tmp/backup # cdrecord -v speed=2 dev=0,1,0 blank=fast cdrecord -v speed=2 dev=0,1,0 -data /tmp/backup.iso rm -rf /tmp/backup /tmp/backup.iso This is just great. Works fine. Does everything I want it to do. However, I now find after an upgrade to SuSE 8.2 that the backup system has failed me. Further investigation reveals that there is something in the SCSI emulation part of the software that has failed meaning the cdrecord and mkisofs can't follow on and create a final ISO image. The first part of the log file that is different is the following as the ISO image is produced with 'tar -cz'.... "Using libscg version 'schily-0.7' cdrecord: Warning: using inofficial libscg transport code version (okir@suse.de-scsi-linux-sg.c-1.75-resmgr-patch '@(#)scsi-linux-sg.c 1.75 02/10/21 Copyright 1997 J. Schilling'). atapi: 1 Device type : Removable CD-ROM" Later on other things show up..... "Performing OPC... Starting new track at sector: 0 Track 01: 146 of 614 MB written (fifo 98%) [buf 1%] 15.0x.cdrecord: Input/output error. write_g1: scsi sendcmd: no error CDB: 2A 00 00 01 24 ED 00 00 1F 00 status: 0x2 (CHECK CONDITION) Sense Bytes: 70 00 03 00 00 00 00 0A 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.044s timeout 40s" and finally the whole thing collapses....... "Linux sg driver version: 3.1.24 cdrecord: Warning: using inofficial libscg transport code version (okir@suse.de-scsi-linux-sg.c-1.75-resmgr-patch '@(#)scsi-linux-sg.c 1.75 02/10/21 Copyright 1997 J. Schilling'). cdrecord: Input/output error. write_g1: scsi sendcmd: no error CDB: 2A 00 00 01 03 A0 00 00 1F 00 status: 0x2 (CHECK CONDITION)" the whole of the log file with errors is attached. Can anyone give an explanation of how to sort this out ? Thanks Richard www.sheflug.co.uk