#!/bin/sh # pointer to development tree export CC03_ROOT=/home/james/cc03/knoppix # IP address of target host export CC03_TARGET=10.0.0.12 # pointer to remastering filesystem export CC03_PART=/hdc # place to put ISO image before burning to CD export CC03_TMP=/hdb/tmp # media size of CD stock for size check (cc03-make-outer) export CC03_MAXIMUM=650 # media size of CD stock for size check (cc03-make-outer) export CC03_MAXIMUM=700 # burn the CD image to CD-R (cc03-burn) export CC03_CDRECORD_OPTIONS="-verbose -tao -eject speed=24 dev=0,0" # burn the CD image to CD-RW (cc03-burn) export CC03_CDRECORD_OPTIONS="-verbose -tao -eject blank=fast speed=10 dev=0,0" # use the boot image for clusterKNOPPIX export CC03_BOOT=boot288.img # use the boot image for KNOPPIX export CC03_BOOT=boot.img # report what we have echo "" env|egrep CC03\|PATH|sort # suggest you include us in PATH (code this better someday) echo "" echo "Have you done a ..." echo ' export PATH="$CC03_ROOT/bin:$PATH"' echo ""