BRU LE for Mac OS X
GraWil wonders: "The Tolis Group has just released BRU LE for Mac OS X. It is far more reasonably priced than the professional version but it is still priced well above the personal edition for Linux and BSD users. Does anyone have experience they can share about strategies for backing up Powerbook and Desktop Mac I am using a total of 140GB of the 180GB available)?"
--
Money shouldn't be much of an issue since you're already spending a bunch on the OS, plus you've got two macs sitting around.
--
Just because someone uses macs doesn't mean that they have a bunch of money sitting around.
Yes, Macs are expensive. But there are several good finance programs around that make them much more affordable. Apple Loan is available on their website, and compusa often has a "18 months same as cash"
Not trying to be a troll, just pointing out that OS X comes with perfectly good backup software.
/home/
/home/
Tar and bzip2 come with Mac OS X, it wouldn't be that hard to script automated full and incremental backups. I do not believe that all OS X come with bash, however they at least come with tcsh. Here are a couple of simple examples.
#!/bin/sh
#example of full backup
date > timestamp
tar jcf home-full.tar.bz2
#!/bin/sh
#example of incremental backup
lastbackup=`cat timestamp`
date > timestamp
tar jc --newer $lastbackup -f home-weekly.tar.bz2
/^([Ss]ame [Bb]at (time, |channel.)){2}$/
And then there is always the fact(yes, it is a fact) the mac users tend to keep their computers longer(longer replacement cycle) than do most PC users, so the cost is evened out much more....
I hate to risk getting modded down by pointing out the flaws of open source advocacy, but I find it funny that your first complaint after the fact that it's closed source is that the interface is awkward. Maybe I'm way off, but for the most part it seems to me awkward interfaces are a staple of open source software. Don't get me wrong, I like the idea of "free" in all its incarnations, but opening source unfortunately doesn't (usually) mean the interface gets better.
Obvious exits are NORTH, SOUTH, and DENNIS.