mount.rst.inc 1.3 KB

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