Man page - borg-umount(1)
Packages contas this manual
- borgbackup(1)
- borg-create(1)
- borg(1)
- borg-mount(1)
- borg-info(1)
- borg-list(1)
- borg-placeholders(1)
- borg-benchmark(1)
- borg-diff(1)
- borg-key-change-passphrase(1)
- borg-import-tar(1)
- borg-benchmark-crud(1)
- borg-compression(1)
- borg-version(1)
- borg-init(1)
- borg-delete(1)
- borg-recreate(1)
- borg-check(1)
- borg-change-passphrase(1)
- borg-key(1)
- borg-compact(1)
- borg-umount(1)
- borg-serve(1)
- borg-prune(1)
- borg-with-lock(1)
- borg-common(1)
- borg-patterns(1)
- borg-key-migrate-to-repokey(1)
- borg-break-lock(1)
- borg-rename(1)
- borg-upgrade(1)
- borg-export-tar(1)
- borg-key-export(1)
- borg-extract(1)
- borgfs(1)
- borg-config(1)
- borg-key-import(1)
- borg-tag(1)
- borg-repo-delete(1)
- borg-create(1)
- borg(1)
- borg-mount(1)
- borg-info(1)
- borg-list(1)
- borg-placeholders(1)
- borg-benchmark(1)
- borg-diff(1)
- borg-key-change-passphrase(1)
- borg-repo-compress(1)
- borg-import-tar(1)
- borg-benchmark-crud(1)
- borg-repo-create(1)
- borg-repo-list(1)
- borg-compression(1)
- borg-version(1)
- borg-delete(1)
- borg-undelete(1)
- borg-key-change-location(1)
- borg-recreate(1)
- borg-check(1)
- borg-repo-space(1)
- borg-key(1)
- borg-compact(1)
- borg-umount(1)
- borg-serve(1)
- borg-transfer(1)
- borg-prune(1)
- borg-with-lock(1)
- borg-common(1)
- borg-patterns(1)
- borg-match-archives(1)
- borg-break-lock(1)
- borg-repo-info(1)
- borg-rename(1)
- borg-analyze(1)
- borg-export-tar(1)
- borg-key-export(1)
- borg-extract(1)
- borg-benchmark-cpu(1)
- borgfs(1)
- borg-key-import(1)
Package: borgbackup
apt-get install borgbackup
apt-get install borgbackup
Manuals in package:
Documentations in package:
Package: borgbackup-is-borgbackup2
apt-get install borgbackup-is-borgbackup2
apt-get install borgbackup-is-borgbackup2
Manuals in package:
Manual
| BORG-UMOUNT(1) | borg backup tool | BORG-UMOUNT(1) |
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 /path/to/repo /tmp/mymountpoint $ ls /tmp/mymountpoint root-2016-02-14 root-2016-02-15 $ borg umount /tmp/mymountpoint # Mounting a specific archive is possible as well. $ borg mount /path/to/repo::root-2016-02-15 /tmp/mymountpoint $ ls /tmp/mymountpoint bin boot etc home lib lib64 lost+found media mnt opt root sbin srv tmp usr var $ borg umount /tmp/mymountpoint # The "versions view" merges all archives in the repository # and provides a versioned view on files. $ borg mount -o versions /path/to/repo /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 --glob-archives '*-my-home' --last 10 /path/to/repo /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 '...' /path/to/repo /tmp/mymountpoint # When using BORG_REPO env var, use :: as positional argument: export BORG_REPO=/path/to/repo # Mount the whole repo: borg mount :: /tmp/mymountpoint # Mount some specific archive: borg mount ::root-2016-02-15 /tmp/mymountpoint
borgfs
$ echo '/mnt/backup /tmp/myrepo fuse.borgfs defaults,noauto 0 0' >> /etc/fstab $ echo '/mnt/backup::root-2016-02-15 /tmp/myarchive fuse.borgfs defaults,noauto 0 0' >> /etc/fstab $ mount /tmp/myrepo $ mount /tmp/myarchive $ ls /tmp/myrepo root-2016-02-01 root-2016-02-2015 $ ls /tmp/myarchive bin boot etc home lib lib64 lost+found media mnt opt root sbin srv tmp usr var
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
| 2024-07-02 |