automator
Even simpler with Tiger. As I do not have .mac and it seemed automator could do the same job as iBackup, as long as I was just concerned with a full home directory backup.
I use automator to find files and make zip archive. Save automator task as '.app' and I scheduled it in iCal. I had to use a shell script in automator to find archives older then 1 week to delete, since I couldn't figure out ow do that with automator.
Automator Task:
Get Specific Finder Items
Added my home directory
Create Archive
Make zip file backup
Get Specific Finder Items
Get .zip file just made
Rename Files
Append Date to filename of zip archive
Run Shell Script
Delete archives older then 1 week
Shell Script:
# Modified n minutes ago and older, 10080 seconds is one week
OLDER_THEN="10080"
BACKUP_FOLDER="/Volumes/Maxtor 300G/Backups"
cd "${BACKUP_FOLDER}"
find . -iname "*.zip" -type f -mmin +${OLDER_THEN} | while read file
do
rm -rf "${file}"
done
In fact, the entire backup could be done as a shell script quite easily, I just wanted to play with automator...