Quantcast

IN THIS MONTH'S ISSUE!
iDEALS
The video player requires Flash 8 Player or later. Please download the latest Flash Player.
The Best-Kept Backup Secret
Posted 04/30/2008 at 11:41:27am | by Johnathon Williams

Time Machine may be renowned as the first backup utility built into Mac OS X, but the truth is that power users have enjoyed built-in backups for years,
thanks to a command-line utility called Rsync. To create a backup of your home folder on your network drive using Rsync, make sure the drive is mounted, and then launch the Terminal (Applications > Utilities). At the command line, type

 

rsync -aE --progress ~ /Volumes/name-of-network-drive/name-of-backup-folder

 

and change the text after the last two slashes to the name of your network volume and the name of the network folder where you want the backup saved, respectively. Press Enter, and Rsync will perform the backup, displaying its progress as it completes.

 

To learn more about Rsync, pull up its manual page in the Terminal by typing

 

man rsync

 

and pressing Enter.

COMMENTS: 1
COMMENTS
avatarIs there any way to automate

Is there any way to automate this, like a cron script or something else?

Login or register to post comments