Man page - borg2-umount(1)
Packages contains this manual
- borg2-diff(1)
- borg2-break-lock(1)
- borg2-umount(1)
- borg2-mount(1)
- borg2-export-tar(1)
- borg2-key(1)
- borg2-common(1)
- borg2-prune(1)
- borg2-match-archives(1)
- borg2-placeholders(1)
- borg2-check(1)
- borg2-compact(1)
- borg2-delete(1)
- borg2-extract(1)
- borg2-benchmark-crud(1)
- borg2-key-export(1)
- borg2-analyze(1)
- borg2(1)
- borg2-list(1)
- borg2-import-tar(1)
- borg2-repo-delete(1)
- borg2-undelete(1)
- borg2-create(1)
- borg2-patterns(1)
- borgfs2(1)
- borg2-compression(1)
- borgbackup2(1)
- borg2-key-change-passphrase(1)
- borg2-recreate(1)
- borg2-version(1)
- borg2-repo-list(1)
- borg2-tag(1)
- borg2-rename(1)
- borg2-repo-create(1)
- borg2-serve(1)
- borg2-transfer(1)
- borg2-benchmark-cpu(1)
- borg2-benchmark(1)
- borg2-info(1)
- borg2-key-change-location(1)
- borg2-repo-compress(1)
- borg2-with-lock(1)
- borg2-key-import(1)
- borg2-repo-info(1)
- borg2-repo-space(1)
apt-get install borgbackup2
Manual
BORG-UMOUNT
NAMESYNOPSIS
DESCRIPTION
OPTIONS
arguments
EXAMPLES
borgfs
SEE ALSO
AUTHOR
NAME
borg-umount - un-mount the FUSE filesystem
SYNOPSIS
borg [common options] umount [options] MOUNTPOINT
DESCRIPTION
This command un-mounts a FUSE filesystem that was mounted with borg mount .
This is a convenience wrapper that just calls the platform-specific shell command - usually this is either umount or fusermount -u.
OPTIONS
See borg-common(1) for common options of Borg commands.
arguments
MOUNTPOINT
mountpoint of the filesystem to umount
EXAMPLES
# Mounting the
repository shows all archives.
# Archives are loaded lazily, expect some delay when
navigating to an archive
# for the first time.
$ borg mount /tmp/mymountpoint
$ ls /tmp/mymountpoint
root-2016-02-14 root-2016-02-15
$ borg umount /tmp/mymountpoint
# The
"versions view" merges all archives in the
repository
# and provides a versioned view on files.
$ borg mount -o versions /tmp/mymountpoint
$ 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
$ borg umount /tmp/mymountpoint
# 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
$ borg mount --exclude '...' /tmp/mymountpoint
borgfs
$ 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 or pip to install Borg. Users of the standalone binary will have to manually create a symlink (see pyinstaller-binary ).
SEE ALSO
borg-common(1) , borg-mount(1)
AUTHOR
The Borg Collective