mount.rst.inc 972 B

12345678910111213141516171819202122232425262728293031323334353637
  1. .. _borg_mount:
  2. borg mount
  3. ----------
  4. ::
  5. borg mount <options> REPOSITORY_OR_ARCHIVE MOUNTPOINT
  6. positional arguments
  7. REPOSITORY_OR_ARCHIVE
  8. repository/archive to mount
  9. MOUNTPOINT
  10. where to mount filesystem
  11. optional arguments
  12. ``-f``, ``--foreground``
  13. | stay in foreground, do not daemonize
  14. ``-o``
  15. | Extra mount options
  16. `Common options`_
  17. |
  18. Description
  19. ~~~~~~~~~~~
  20. This command mounts an archive as a FUSE filesystem. This can be useful for
  21. browsing an archive or restoring individual files. Unless the ``--foreground``
  22. option is given the command will run in the background until the filesystem
  23. is ``umounted``.
  24. The command ``borgfs`` provides a wrapper for ``borg mount``. This can also be
  25. used in fstab entries:
  26. ``/path/to/repo /mnt/point fuse.borgfs defaults,noauto 0 0``
  27. To allow a regular user to use fstab entries, add the ``user`` option:
  28. ``/path/to/repo /mnt/point fuse.borgfs defaults,noauto,user 0 0``