README.rst 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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. UNTIL FURTHER NOTICE, EXPECT THAT WE WILL BREAK COMPATIBILITY REPEATEDLY.
  11. THIS IS SOFTWARE IN DEVELOPMENT, DECIDE YOURSELF IF IT FITS YOUR NEEDS.
  12. Read issue #1 on the issue tracker, goals are being defined there.
  13. Please also see the LICENSE for more informations.
  14. Easy to use
  15. ~~~~~~~~~~~
  16. Initialize backup repository and create a backup archive::
  17. $ borg init /mnt/backup
  18. $ borg create -v /mnt/backup::documents ~/Documents
  19. Main features
  20. ~~~~~~~~~~~~~
  21. Space efficient storage
  22. Variable block size deduplication is used to reduce the number of bytes
  23. stored by detecting redundant data. Each file is split into a number of
  24. variable length chunks and only chunks that have never been seen before are
  25. compressed and added to the repository.
  26. Optional data encryption
  27. All data can be protected using 256-bit AES encryption and data integrity
  28. and authenticity is verified using a MAC (message authentication code).
  29. Off-site backups
  30. Borg can store data on any remote host accessible over SSH. This is
  31. most efficient if Borg is also installed on the remote host.
  32. Backups mountable as filesystems
  33. Backup archives are mountable as userspace filesystems for easy backup
  34. verification and restores.
  35. What do I need?
  36. ---------------
  37. Borg requires Python 3.2 or above to work.
  38. Borg also requires a sufficiently recent OpenSSL (>= 1.0.0).
  39. In order to mount archives as filesystems, llfuse is required.
  40. For other python requirements, please see setup.py install_requires.
  41. How do I install it?
  42. --------------------
  43. ::
  44. $ pip3 install borgbackup
  45. Where are the docs?
  46. -------------------
  47. Go to https://borgbackup.github.io/ for a prebuilt version of the documentation.
  48. You can also build it yourself from the docs folder.
  49. Where are the tests?
  50. --------------------
  51. The tests are in the borg/testsuite package. To run the test suite use the
  52. following command::
  53. $ fakeroot -u tox # you need to have tox installed
  54. .. |build| image:: https://travis-ci.org/borgbackup/borg.svg
  55. :alt: Build Status
  56. :target: https://travis-ci.org/borgbackup/borg