Common Operations

Some of the things provided with the Bootable CD augment normal Unix/Linux commands in simple ways. These common things to do are documented here.


Other handy things...

Here's a trick for making forensically sound images of a hard drive to a series of CD ROMs. It starts by putting in a phoney SCSI driver for the IDE CD-ROM drive. Next it cycles through 640Meg at a time making images of the next portion of the hard disk (/dev/hda in this case). Be careful - it probably won't work on your system without some additional modifications.

/sbin/modprobe ide-scsi
echo "Place first CD in the drive now... wait till the drive light stops and press "
read ok
i=0;
while true; do
        j=`expr $i + 320000`
        dd if=/dev/hda bs=2048 skip=$i count=320000 | \
		cdrecord dev=0,0,0 fs=4096k -v -useinfo speed=12 driveropts=burnproof \
			-dao -eject -pad -data -
        i=$j
        echo "Place next CD in the drive now and wait for the CD light to stop flashing..."
        echo "Press ^C if done...  to continue"
        read ok
done