I am looking for a command line solution to a backup problem. I usually use rsync, which works great; however, I have a large quantity (~170GB) of text files. These files shrink down a lot when compressed, and if I can sync to a compressed copy or tar-type archive, that would be ideal. Any ideas?
Of course, tar has compression options, but isn't ideal for differential backups. As I understand it, the update (-u) feature appends changed files to the end of the archive, so as you run it over and over your archive will get unmanageably huge.
What I want, I think, is basically tar -cjvuf but with an update that deletes the old copy and replaces it with the new one.....any suggestions?