↧
Answer by Aaron Digulla for Incremental compressed backup over ssh
A simple solution would be to use a compressing file system on the server side. See "Allocation and layout policies" in Wikipedia's "Comparison of file systems" for a list. Another option is to use a...
View ArticleIncremental compressed backup over ssh
So far I'm backing up my stuff using: rsync -avz --delete /Local/Location/of/data/ -e ssh username@hostname:/Remote/Location/of/backup The local side is running Mac OS, and the server side is running...
View Article