Displaying 1 result from an estimated 1 matches for "pravuzgot".
2005 Oct 31
2
rsync + incremental changes files
...For example:
source-dir to dest-dir a full backup.
incremental of sources-dir and differential of backup-dir in `date +%m%h%y`
Then, i should have a full backup in the dest-dir and
incremental+diferential backup in every $DATE directory.
Any ideas?
I try this and it work on local files:
rsync -pravuzgot /etc/* /root/full-backup
rsync -av --link-dest=/root/full-backup/ /etc/ /root/incremental/
Then, i have in the "incremental" directory symlinks to every file,
becouse they aren't modified.
When i try this over ssh, it copies everything again in the
incremental directory.
rsync -prav...