System Grab Bag

View all TLDR pages from common (or from all pages)

duplicacy

A lock-free deduplication cloud backup tool. More information: https://github.com/gilbertchen/duplicacy/wiki.
  • Use current directory as the repository, initialize a SFTP storage and encrypt the storage with a password:
    duplicacy init -e {{snapshot_id}} {{sftp://[email protected]/path/to/storage/}}
  • Save a snapshot of the repository to the default storage:
    duplicacy backup
  • List snapshots of current repository:
    duplicacy list
  • Restore the repository to a previously saved snapshot:
    duplicacy restore -r {{revision}}
  • Check the integrity of snapshots:
    duplicacy check
  • Add another storage to be used for the existing repository:
    duplicacy add {{storage_name}} {{snapshot_id}} {{storage_url}}
  • Prune a specific revision of snapshot:
    duplicacy prune -r {{revision}}
  • Prune revisions, keeping one revision every n days for all revisions older than m days:
    duplicacy prune -keep {{n:m}}

License and Disclaimer

The content on this page is copyright © 2014—present the tldr-pages team and contributors.
This page is used with permission under Creative Commons Attribution 4.0 International License.

While we do attempt to make sure content is accurate, there isn't a warranty of any kind.