Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

idyll

macrumors 6502a
Original poster
Jun 5, 2007
502
19
I want to schedule a daily backup of one external hard drive on to another external drive. The app "Carbon Copy Cloner" looks like it does what I need with their "Incremental Backup" feature and scheduling. Are there any other alternatives, possibly free ones?
 
Rsync in a cronjob

Something like this:

Code:
rsync -av --delete /path_of_source_drive_root_directory/ /path_of_second_drive/

type 'man rsync' for entire syntax

'man crontab' for crontab syntax
 
Yeah, I use rsync for that too, in a simple script that launchd starts for me daily. (launchd / launchctl is the preferred method over cron, according to the launchd man page.) Works great and it's free!

It's not hard, however I can understand that not everyone wants to piddle around looking up arcane options on a man page...
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.