View Single Post
Posts: 31 | Thanked: 35 times | Joined on Jun 2010
#7
Originally Posted by GameboyRMH View Post
Code:
#! /bin/sh
stty -echo; ssh backupuser@192.168.254.100 "sudo -v"; stty echo
rsync -avzn --delete \ #Change "-avzn" to "-avz" after testing
--rsync-path "sudo rsync" \
--exclude /proc/'*' \
--exclude /sys/'*' \
--exclude /syspart/'*' \
--exclude /dev/'*' \
--exclude /tmp/'*' \
--exclude /var/tmp/'*' \
--exclude /.debian/'*' \ #Excludes your debian chroot if you have one - recommended
--exclude /media/'*' \ #Excludes /media - remove this line to back up the microsd contents as well
/ backupuser@192.168.254.100:/media/disk1/n900bak
Few comments:

Instead of all those excludes, I would use -x/--one-file-system switch and just list the mounted filesystems that need backing up (/ , /opt and /home/user/MyDocs probably).

I would investigate losing the "-z". One, ssh may already be doing some compression on the line already, and two, it is taxing on the CPU and if you're on battery that is not good.

Make sure the filesystem you are copying TO is capable of storing all the metadata and permissions. For example, backing up to VFAT is not ideal (not only that but VFAT truncates file times to even number of seconds so it'll always need resyncing).

Last edited by wotevah; 2010-08-19 at 22:31.
 

The Following 2 Users Say Thank You to wotevah For This Useful Post: