Gus Wirth wrote:
Is there a publicly searchable KPLUG mailing list archive anywhere? I'm looking for an old post by Carl Lowenstein that had a script for comparing an ISO image file to a CDROM/DVD to ensure it burned properly. I thought I saved it but I can no longer find it. My Thunderbird mail client doesn't search well enough for this.

Or perhaps carl can send me the script?

Gus
Here is what I use to burn and check the CD.

[the other] Karl


#!/bin/bash
ISOFILE=$1
[ -z "${ISOFILE}" ] && ISOFILE="/data/cdr/data.iso"
SPEED=$2
[ -z "${SPEED}" ] && SPEED="16"
cdrecord -v -fs=32m -dao -overburn speed=${SPEED} dev=/dev/hdc -data ${ISOFILE}
echo "Please stand by...  calculating md5sum..."
md5sum ${ISOFILE} /dev/cdrom


--
[email protected]
http://www.kernel-panic.org/cgi-bin/mailman/listinfo/kplug-newbie

Reply via email to