From: Karl T. K. <ka...@pr...> - 2001-03-08 12:58:30
|
On Thu, Mar 08, 2001 at 03:35:37PM +0900, Andrew Church wrote: > rm -rf $tmpdir > mkdir $tmpdir || exit 1 > dd </dev/zero bs=2352 count=300 >$tmpdir/audio.raw > cdrecord -multi -audio $tmpdir/audio.raw > rm -f $tmpdir/audio.raw > > msinfo=`cdrecord -msinfo` > if [ ! "$msinfo" ] ; then > echo >&2 'cdrecord -msinfo failed! Aborting.' > exit 1 > fi > mkisofs -l -C $msinfo -o $tmpdir/disc.iso $exclude $1 I see you specify -l, which I don't. It should not have any influence, but I'd advise you to try without it (and keep your files within 8.3 DOS naming conventions). > dd if="$ipbin" bs=2048 count=16 of=$tmpdir/disc.iso conv=notrunc > cdrecord -multi -xa1 $tmpdir/disc.iso I don't specify -multi here. Those are the only two differences I could find between your script and the scripts/Makefiles I've been using. But, if you're going to toy around with linuxdc, we recommend you get and use dcload, available from http://www.cerc.utexas.edu/~andrewk/dc/ In the make-dc dir is a Makefile that burns the CD. Regards, Karl T |