How to Back Up Linux Home Directories with rsync
rsync is a reliable choice for backing up your Linux home directory, especially when dealing with large files and incremental changes. Unlike git (which struggles with files >5GB), rsync efficiently handles large files and only transfers what’s changed on subsequent runs. Basic Backup Command The fundamental syntax is straightforward: rsync -avxP \ /path/to/directory/to/backup \ /path/to/directory/for/storing/backup…
