mount.rst.inc 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. .. _borg_mount:
  2. borg mount
  3. ----------
  4. ::
  5. usage: borg mount [-h] [--critical] [--error] [--warning] [--info] [--debug]
  6. [--lock-wait N] [--show-rc] [--no-files-cache] [--umask M]
  7. [--remote-path PATH] [-f] [-o OPTIONS]
  8. REPOSITORY_OR_ARCHIVE MOUNTPOINT
  9. Mount archive or an entire repository as a FUSE fileystem
  10. positional arguments:
  11. REPOSITORY_OR_ARCHIVE
  12. repository/archive to mount
  13. MOUNTPOINT where to mount filesystem
  14. optional arguments:
  15. -h, --help show this help message and exit
  16. --critical work on log level CRITICAL
  17. --error work on log level ERROR
  18. --warning work on log level WARNING (default)
  19. --info, -v, --verbose
  20. work on log level INFO
  21. --debug work on log level DEBUG
  22. --lock-wait N wait for the lock, but max. N seconds (default: 1).
  23. --show-rc show/log the return code (rc)
  24. --no-files-cache do not load/update the file metadata cache used to
  25. detect unchanged files
  26. --umask M set umask to M (local and remote, default: 0077)
  27. --remote-path PATH set remote path to executable (default: "borg")
  28. -f, --foreground stay in foreground, do not daemonize
  29. -o OPTIONS Extra mount options
  30. Description
  31. ~~~~~~~~~~~
  32. This command mounts an archive as a FUSE filesystem. This can be useful for
  33. browsing an archive or restoring individual files. Unless the ``--foreground``
  34. option is given the command will run in the background until the filesystem
  35. is ``umounted``.