I shared a little tip about backing up to a USB drive a while back, and after a bit of tinkering, I have a new method which uses rsync to speed things up a bit, and as the name suggests, keep things in sync rather than just blindly copying.
The other thing that I'm suggesting, is that you mount/unmount the USB drive between backups, mainly to protect the filesystem if it's mounted when the power goes out, or if you have to grab it in a hurry.
So here is what I suggest setting up as a cronjob (replace sdb1 with your own usb drive info):
mount /dev/sdb1 /mnt/backup
rsync -vrlptg --del /path/to/photos/ /mnt/backup/photos
umount /mnt/backup/
Important to note, I have used the --del option here, which means files deleted from the source location, will also be deleted on the backup drive. Since I use my backup drive more as a "mirror" of the data, rather than an archive - this works well for me, your situation may be different.
A nice way of going about protecting your data, is to use 2 (or more) drives and alternate them once a week, this script will keep whichever one you have plugged in up-to-date.
Just a quick friday afternoon post, to let a few readers know that my latest website, easyrecipebook.com is now "online", although still in a beta stage at the moment, there's plenty more features to add!
The aim of the site is to provide a directory of recipes that the average home-cook can whip up without needing hard to find ingredients or spend hours preparing.
Have a click around, and let me know if you do cook any of the recipes from it (I'll be adding a comments feature to the site shortly), hopefully easyrecipe book can become a good resource for people looking for easy, healthy food to cook after a long day at work.




