meta data for this page
Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| linux:backup:overview [2016/05/18 09:47] – [Performance] niziak | linux:backup:overview [2025/12/09 09:00] (current) – niziak | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| - | ====== | + | ====== |
| + | |||
| + | ===== borg ===== | ||
| + | * (+) deduplication using rolling hashe (buzhash) - only chunks are stored on remote (hashes are calculated before chunk compression, | ||
| + | will only be applied to new chunks) | ||
| + | * (-) a bit more complex CLI than duplicity | ||
| + | * (+) subsequent backups are light - no full/ | ||
| + | * (+) raw/block devices support | ||
| ===== rsync ===== | ===== rsync ===== | ||
| Line 5: | Line 12: | ||
| * no build-in incremental snapshots support | * no build-in incremental snapshots support | ||
| * incremental backups of modified files possible (using --backup and --backup-dir params) | * incremental backups of modified files possible (using --backup and --backup-dir params) | ||
| + | |||
| + | ==== delete files ==== | ||
| + | <code bash> | ||
| + | rsync --delete-missing-args --backup --files-from list_file_to_delete.txt src/ 192.168.1.1:: | ||
| + | </ | ||
| + | |||
| ===== rsnapshot ===== | ===== rsnapshot ===== | ||
| Line 16: | Line 29: | ||
| * special directory '' | * special directory '' | ||
| * [[http:// | * [[http:// | ||
| + | * < | ||
| ===== duplicity ===== | ===== duplicity ===== | ||
| * No direct access to backups. Backups are stored in PGP encrypted/ | * No direct access to backups. Backups are stored in PGP encrypted/ | ||
| * Restarting of broken backup needs only to re-download first volume from destination | * Restarting of broken backup needs only to re-download first volume from destination | ||
| + | * Full backups are overhead | ||
| ===== duply ===== | ===== duply ===== | ||
| * front end to duplicity | * front end to duplicity | ||
| + | <code bash> | ||
| + | duply my-backup backup | ||
| + | duply my-backup cleanup --extra-clean --force | ||
| + | </ | ||
| ====== Performance ====== | ====== Performance ====== | ||