Afio is definitely the best backup program I've used so far - I've
attached the script I use to make backups of my system with it. 

-- 
Pete

[EMAIL PROTECTED]
----------------------------------------------------------------
Linux Registered User # 100652 - Uptime 11 hours, and counting...

-- Sorry, the virtual reality check bounced. --
#!/bin/bash

# Script to backup entire system, not using gzip

echo "Full Backup"
echo ""
echo -e "Rewinding tape...\c"
mt -f /dev/qft0 rewind
cd /
echo -e " creating filelist of all files...\c"
find . -depth -print | grep -v '^./var/spool' | grep -v '^./usr/local/src' | grep -v 
'^./proc' | grep -v '^./tmp' | grep -v '^./var/tmp' | grep -v '^./home/morph/lprtemp' 
> /tmp/full.filelist
echo -e " done."
echo -e "Starting Backup... \c"
cat /tmp/full.filelist | afio -o -b 10k -c 1000 -s 1544m -Z -G 4 -z /dev/qft0
echo -e "Starting verification... \c"
afio -t -b 10k -c 1000 -s 1544m -Z -G 4 -z /dev/qft0 >/dev/null

Reply via email to