meta data for this page
  •  

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
linux:backup:overview [2016/05/18 09:49] – [rdiff-backup] niziaklinux:backup:overview [2021/01/19 09:34] (current) niziak
Line 1: Line 1:
-====== Headline ======+====== Backup SW ======
  
 ===== rsync ===== ===== rsync =====
Line 5: Line 5:
   * 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::root/
 +</code>
 +
  
 ===== rsnapshot ===== ===== rsnapshot =====
Line 26: Line 32:
   * front end to duplicity   * front end to duplicity
  
 +<code bash>
 +duply my-backup backup
 +duply my-backup cleanup --extra-clean --force
 +</code>
  
 ====== Performance ====== ====== Performance ======