faq.rst 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. * Time of last modification (nanosecond precision with Python >= 3.3)
  15. * User ID of owner
  16. * Group ID of owner
  17. * Unix Permission
  18. * Extended attributes (xattrs)
  19. * Access Control Lists (ACL_) on Linux, OS X and FreeBSD
  20. * BSD flags on OS X and FreeBSD
  21. How can I specify the encryption passphrase programmatically?
  22. The encryption passphrase can be specified programmatically using the
  23. `ATTIC_PASSPHRASE` environment variable. This is convenient when setting up
  24. automated encrypted backups. Another option is to use
  25. key file based encryption with a blank passphrase. See
  26. :ref:`encrypted_repos` for more details.
  27. 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?
  28. Yes, everything is encrypted before leaving the local machine.
  29. If a backup stops mid-way, does the already-backed-up data stay there? I.e. does Attic resume backups?
  30. Yes, during a backup a special checkpoint archive named ``<archive-name>.checkpoint`` is saved every 5 minutes
  31. containing all the data backed-up until that point. This means that at most 5 minutes worth of data needs to be
  32. retransmitted if a backup needs to be restarted.