Free Mac Backup Utility

One of the most basic types of backup is the folder sync. Folder A lives on your Mac. Folder B is on an external hard drive. You want to make Folder B look exactly like Folder A.Granted, anyone could make this happen by dragging and dropping the contents of A to B. If you have a lot of data, that’s going to take a while each time, though.

Fortunately, there’s a really easy, free way to make this happen with almost no effort (or geekery) on your part using two tools that are already on your Mac: rsync and Automator.

Snap Backup automatically puts the current date in the backup file name, alleviating you from the tedious task of renaming your backup file every time you backup. The backup file is a single compressed zip file that can be read by standard zip programs such as gzip, 7-Zip, The Unarchiver, and Mac's built-in Archive Utility. Carbon Copy Cloner (left) and SuperDuper (right) are our top picks for Mac drive-cloning utilities. Both apps give you the option to erase the destination before copying files from the source;. Time Machine is a very good inbuilt backup software for MAC that can be used to backup MAC for free. Time Machine keeps hourly backups for past 24 hours, daily backups for past month, and weekly backups for all previous months.Older backups are deleted when the disk is full. Option is provided to delete older backups on your own. You can also choose the option to backup at a.

rsync

rsync is a command line utility that works on lots of operating systems, including Mac OS X. It’s really great at backing up data and can do some powerful and mind-blowing things, most of which you need to know nothing about.

I’m using rsync in a very basic way. For example, this command copies all of the contents of my Documents folder (under my Home folder, the ~ sign) to an external hard drive called “Lacie500”:

rsync -aE --delete ~/Documents/ '/Volumes/Lacie500/Documents/'

It essentially does two things:

  1. Copies anything that has changed since the last copy
  2. Deletes anything on Lacie500 that is no longer in the Documents folder on my Mac

In other words, it makes the Documents folder on Lacie500 look exactly like the Documents folder on my Mac.

rsync + Automator

Since I didn’t want to have to run this command from Terminal each time, I created a very simple, single-action workflow using Automator.

Free mac backup utility download

Free Mac Backup Utility Free

As you can see, I’ve got it set up to mirror my Documents, Pictures, and Music folder.

I saved the Automator workflow as “sync.app” so so that I could just store it right on the external hard drive's root folder. That way, all I have to do is plug in the external hard drive, click on the hard drive in Finder, then double click the app. The sync just happens, and I never have to think about command line syntax again.

Free mac backup utility app

Why this is useful

Backup Software For Mac

Free Mac Backup Utility

For starters, backups happen if they’re easy. Automating backups is one way to make them really easy.

Back up mac to icloud

I have what I consider a pretty decent backup strategy involving Time Machine, Carbon Copy Cloner, and Dropbox. But as I keep accumulating miscellaneous hard drives (not sure how that happens), I want to make use of them. This is one way.

Free Mac Backup Utility Programs

Stuff I read as I wrote this