faq.rst 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. .. _faq:
  2. .. include:: global.rst.inc
  3. Frequently asked questions
  4. ==========================
  5. Which platforms are supported?
  6. Currently Linux, FreeBSD and MacOS X are supported.
  7. Can I backup VM disk images?
  8. Yes, the :ref:`deduplication <deduplication_def>` technique used by |project_name|
  9. makes sure only the modified parts of the file are stored.
  10. Which file attributes are preserved?
  11. The following attributes are preserved:
  12. * Name
  13. * Contents
  14. * Hardlinks and symlinks
  15. * Time of last modification (nanosecond precision with Python >= 3.3)
  16. * User ID of owner
  17. * Group ID of owner
  18. * Unix Permission
  19. * Extended attributes (xattrs)
  20. * Access Control Lists (ACL_) on Linux, OS X and FreeBSD
  21. * BSD flags on OS X and FreeBSD
  22. How can I specify the encryption passphrase programmatically?
  23. The encryption passphrase can be specified programmatically using the
  24. `ATTIC_PASSPHRASE` environment variable. This is convenient when setting up
  25. automated encrypted backups. Another option is to use
  26. key file based encryption with a blank passphrase. See
  27. :ref:`encrypted_repos` for more details.
  28. When backing up to remote servers, is data encrypted before leaving the local machine, or do I have to trust that the remote server isn't malicious?
  29. Yes, everything is encrypted before leaving the local machine.
  30. If a backup stops mid-way, does the already-backed-up data stay there? I.e. does Attic resume backups?
  31. Yes, during a backup a special checkpoint archive named ``<archive-name>.snapshot`` is saved every 5 minutes
  32. containing all the data backed-up until that point. This means that at most 5 minutes worth of data needs to be
  33. retransmitted if a backup needs to be restarted.