I have a simple rsync script which backs up all my important files to a remote server (my home folder on the linux server at my university in this case) :<div><br>date &gt;&gt; /path/to/backuplog</div><div><div>rsync -avz /directory/to/backup -e ssh user@remote-server:/target/path &gt;&gt; /path/to/backuplog</div>
<div><br></div><div>This is run as a cronjob every hour, and any time I want I can see what files were sent at what time by looking at the backup log. I also have those important files synced on the cloud using the Ubuntu One service (this is a bit unreliable at the moment though) . I haven&#39;t had any problems with this setup, although I have no experience with the large scale backup you&#39;re working with. Good luck!</div>
<div><br></div><div>Matt</div></div>