> Yes. There is a kernel module called cdfs. Find it on the Web and > compile it and copy it to /lib/modules/<kernel version>/fs.
> Once installed, you can mount a cd with > mount -t cdfs /dev/<cdrom device> <target> Thanks. I'll have a look at it. From what I have learned from HOWTO's etc., it appears that it is possible to write tracks seperately, e.g. I can write one track with $ cdrecord dev=0,0,0 -nofix -audio track1.cdr then later write another $ cdrecord dev=0,0,0 -nofix -audio track2.cdr then when I'm done: $ cdrecord dev=0,0,0 -fix My first attempt at doing this was this script: if [ "$#" = "1" ] ; then for i in `cat $1` ; do mpg123 -r 44100 --stereo -q -s $i | \ cdrecord -v dev=0,0,0 -audio -pad -swab -nofix - done fi After taking out the disk to make sure it is nearly full, I put it back and ran: $ cdrecord dev=0,0,0 -fix Cdrecord 1.8 (i686-pc-linux-gnu) Copyright (C) 1995-2000 Jörg Schilling <SNIP> Using generic SCSI-3/mmc CD-R driver (mmc_cdr). Driver flags : SWABAUDIO Starting to write CD/DVD at speed 4 in write mode for single session. Last chance to quit, starting real write in 1 seconds. cdrecord: Input/output error. close track/session: scsi sendcmd: retryable errorCDB: 5B 00 02 00 00 00 00 00 00 00 status: 0x2 (CHECK CONDITION) Sense Bytes: 70 00 05 00 00 00 00 13 00 00 00 00 72 03 00 00 Sense Key: 0x5 Illegal Request, Segment 0 Sense Code: 0x72 Qual 0x03 (session fixation error - incomplete track in session) Fru 0x0 Sense flags: Blk 0 (not valid) cmd finished after 0.017s timeout 480s Any ideas? Was my script messed up, or was this a freak occurance? I didn't notice anything strange while writing the tracks, except something about secsize being -1... Thanks, Hugo van der Merwe