borg/docs/usage/mount.rst

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

54 lines
1.6 KiB
ReStructuredText
Raw Normal View History

2017-06-06 22:06:36 +00:00
.. include:: mount.rst.inc
.. include:: umount.rst.inc
Examples
~~~~~~~~
::
2017-06-30 08:53:23 +00:00
# Mounting the repository shows all archives.
# Archives are loaded lazily, expect some delay when navigating to an archive
# for the first time.
2022-06-23 23:19:19 +00:00
$ borg mount /tmp/mymountpoint
2017-06-06 22:06:36 +00:00
$ ls /tmp/mymountpoint
2017-06-30 08:53:23 +00:00
root-2016-02-14 root-2016-02-15
2017-06-06 22:06:36 +00:00
$ borg umount /tmp/mymountpoint
# The "versions view" merges all archives in the repository
2017-06-30 08:53:23 +00:00
# and provides a versioned view on files.
2022-06-23 23:19:19 +00:00
$ borg mount -o versions /tmp/mymountpoint
2017-06-06 22:06:36 +00:00
$ ls -l /tmp/mymountpoint/home/user/doc.txt/
total 24
-rw-rw-r-- 1 user group 12357 Aug 26 21:19 doc.cda00bc9.txt
-rw-rw-r-- 1 user group 12204 Aug 26 21:04 doc.fa760f28.txt
2017-06-30 08:53:23 +00:00
$ borg umount /tmp/mymountpoint
2017-06-06 22:06:36 +00:00
# Archive filters are supported.
# These are especially handy for the "versions view",
# which does not support lazy processing of archives.
$ borg mount -o versions --match-archives 'sh:*-my-home' --last 10 /tmp/mymountpoint
# Exclusion options are supported.
# These can speed up mounting and lower memory needs significantly.
$ borg mount /path/to/repo /tmp/mymountpoint only/that/path
2022-06-23 23:19:19 +00:00
$ borg mount --exclude '...' /tmp/mymountpoint
2017-06-06 22:06:36 +00:00
borgfs
++++++
2017-06-30 08:53:23 +00:00
2017-06-06 22:06:36 +00:00
::
$ echo '/mnt/backup /tmp/myrepo fuse.borgfs defaults,noauto 0 0' >> /etc/fstab
$ mount /tmp/myrepo
$ ls /tmp/myrepo
root-2016-02-01 root-2016-02-2015
.. Note::
``borgfs`` will be automatically provided if you used a distribution
package, ``pip`` or ``setup.py`` to install Borg. Users of the
standalone binary will have to create a symlink manually (see
2017-06-06 22:06:36 +00:00
:ref:`pyinstaller-binary`).