Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Duplicacy | 4,804 | 25 days ago | 51 | October 25, 2021 | 309 | other | Go | |||
A new generation cloud backup tool | ||||||||||
Attic | 1,083 | 5 years ago | 202 | other | Python | |||||
Deduplicating backup program | ||||||||||
Minecraft Region Fixer | 433 | a year ago | 14 | gpl-3.0 | Python | |||||
Python script to fix some of the problems of the Minecraft save files (region files, *.mca). | ||||||||||
Z3 | 333 | 9 | 4 | 3 years ago | 15 | March 06, 2018 | 14 | apache-2.0 | Python | |
Backup your ZFS snapshots to S3. | ||||||||||
Knoxite | 246 | 8 months ago | 1 | March 24, 2023 | 49 | agpl-3.0 | Go | |||
A data storage & backup system | ||||||||||
Benchmarking | 167 | 6 years ago | 9 | mit | Shell | |||||
A performance comparison of Duplicacy, restic, Attic, and duplicity | ||||||||||
Pitreos | 49 | 7 | 3 years ago | 5 | August 11, 2021 | 4 | mit | Go | ||
Point in Time recovery for EOS, pronounced like "Patriots" | ||||||||||
Zvault | 42 | 5 years ago | 13 | other | Rust | |||||
Deduplicating backup solution | ||||||||||
Duplicacy Scripts | 24 | 2 years ago | 2 | apache-2.0 | Shell | |||||
A set of scripts for running Duplicacy on Unix systems | ||||||||||
Preserve | 22 | 4 years ago | 1 | February 25, 2016 | 1 | other | Rust | |||
Encrypted backup system, written in Rust. |
Attic is a deduplicating backup program. The main goal of Attic is to provide an efficient and secure way to backup data. The data deduplication technique used makes Attic suitable for daily backups since only changes are stored.
Initialize backup repository and create a backup archive:
$ attic init /usbdrive/my-backup.attic $ attic create -v /usbdrive/my-backup.attic::documents ~/Documents
Attic requires Python 3.2 or above to work. Besides Python, Attic also requires msgpack-python and sufficiently recent OpenSSL (>= 1.0.0). In order to mount archives as filesystems, llfuse is required.
$ pip install Attic
Go to https://attic-backup.org/ for a prebuilt version of the documentation. You can also build it yourself from the docs folder.
The tests are in the attic/testsuite package. To run the test suite use the following command:
$ fakeroot -u python -m attic.testsuite.run