My current iTunes rsync backup script

June 24, 2011

The other day I was looking for a backup solution for two laptops. While I was unable to get the exact results I was looking for I did create a nice bash script that detects the network, and if on my local network it will mount the share from my Airport Extreme and then rsync the data over.  I am sure there is plenty of room for improvement on this script, but it works quite well.

  • http://www.devispiscine.org devis piscine

    Super j’ai partagé votre billet sur mon profil.

  • mbrennwa

    You don’t need to mount the backup volume, because rsync can talk to the server directly. This is not only more straight forward, it also avoids any potential issues with mounting/unmounting the server volume. Just read the man page of rsync to find out more.

    • http://www.fauxzen.com/ Shelby DeNike

      In the past I have chosen not to mount the destination drive, but in this case I got much faster transfer speeds rather than doing it over ssh.  I am defiantly open to suggestions on better rsync flags to use.