foreword.rst 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. .. include:: global.rst.inc
  2. .. _foreword:
  3. Foreword
  4. ========
  5. |project_name| is a secure backup program for Linux, FreeBSD and Mac OS X.
  6. |project_name| is designed for efficient data storage where only new or
  7. modified data is stored.
  8. Features
  9. --------
  10. Space efficient storage
  11. Variable block size `deduplication`_ is used to reduce the number of bytes
  12. stored by detecting redundant data. Each file is split into a number of
  13. variable length chunks and only chunks that have never been seen before
  14. are compressed and added to the repository.
  15. Optional data encryption
  16. All data can be protected using 256-bit AES_ encryption and data integrity
  17. and authenticity is verified using `HMAC-SHA256`_.
  18. Off-site backups
  19. |project_name| can store data on any remote host accessible over SSH as
  20. long as |project_name| is installed.
  21. Backups mountable as filesystems
  22. Backup archives are :ref:`mountable <borg_mount>` as
  23. `userspace filesystems`_ for easy backup verification and restores.
  24. Glossary
  25. --------
  26. .. _deduplication_def:
  27. Deduplication
  28. Deduplication is a technique for improving storage utilization by
  29. eliminating redundant data.
  30. .. _archive_def:
  31. Archive
  32. An archive is a collection of files along with metadata that include file
  33. permissions, directory structure and various file attributes.
  34. Since each archive in a repository must have a unique name a good naming
  35. convention is ``hostname-YYYY-MM-DD``.
  36. .. _repository_def:
  37. Repository
  38. A repository is a filesystem directory storing data from zero or more
  39. archives. The data in a repository is both deduplicated and
  40. optionally encrypted making it both efficient and safe. Repositories are
  41. created using :ref:`borg_init` and the contents can be listed using
  42. :ref:`borg_list`.
  43. Key file
  44. When a repository is initialized a key file containing a password
  45. protected encryption key is created. It is vital to keep this file safe
  46. since the repository data is totally inaccessible without it.