README.rst 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. |build|
  2. What is Borg?
  3. -------------
  4. Borg is a deduplicating backup program. The main goal of Borg is to provide
  5. an efficient and secure way to backup data. The data deduplication
  6. technique used makes Borg suitable for daily backups since only changes
  7. are stored.
  8. Borg is a fork of Attic and maintained by "The Borg Collective" (see AUTHORS file).
  9. BORG IS NOT COMPATIBLE WITH ORIGINAL ATTIC.
  10. EXPECT THAT WE WILL BREAK COMPATIBILITY REPEATEDLY WHEN MAJOR RELEASE NUMBER
  11. CHANGES (like when going from 0.x.y to 1.0.0). Please read CHANGES document.
  12. NOT RELEASED DEVELOPMENT VERSIONS HAVE UNKNOWN COMPATIBILITY PROPERTIES.
  13. THIS IS SOFTWARE IN DEVELOPMENT, DECIDE YOURSELF WHETHER IT FITS YOUR NEEDS.
  14. Read issue #1 on the issue tracker, goals are being defined there.
  15. Please also see the LICENSE for more informations.
  16. Easy to use
  17. ~~~~~~~~~~~
  18. Initialize backup repository and create a backup archive::
  19. $ borg init /mnt/backup
  20. $ borg create -v /mnt/backup::documents ~/Documents
  21. Main features
  22. ~~~~~~~~~~~~~
  23. Space efficient storage
  24. Variable block size deduplication is used to reduce the number of bytes
  25. stored by detecting redundant data. Each file is split into a number of
  26. variable length chunks and only chunks that have never been seen before are
  27. compressed and added to the repository.
  28. Optional data encryption
  29. All data can be protected using 256-bit AES encryption and data integrity
  30. and authenticity is verified using HMAC-SHA256.
  31. Off-site backups
  32. Borg can store data on any remote host accessible over SSH. This is
  33. most efficient if Borg is also installed on the remote host.
  34. Backups mountable as filesystems
  35. Backup archives are mountable as userspace filesystems for easy backup
  36. verification and restores.
  37. What do I need?
  38. ---------------
  39. Borg requires Python 3.2 or above to work.
  40. Borg also requires a sufficiently recent OpenSSL (>= 1.0.0).
  41. In order to mount archives as filesystems, llfuse is required.
  42. How do I install it?
  43. --------------------
  44. ::
  45. $ pip3 install borgbackup
  46. Where are the docs?
  47. -------------------
  48. Go to https://borgbackup.github.io/ for a prebuilt version of the documentation.
  49. You can also build it yourself from the docs folder.
  50. Where are the tests?
  51. --------------------
  52. The tests are in the borg/testsuite package. To run the test suite use the
  53. following command::
  54. $ fakeroot -u tox # you need to have tox and pytest installed
  55. .. |build| image:: https://travis-ci.org/borgbackup/borg.svg
  56. :alt: Build Status
  57. :target: https://travis-ci.org/borgbackup/borg