mirror of
https://github.com/borgbackup/borg.git
synced 2024-12-26 17:57:59 +00:00
Merge pull request #1516 from sudoman/sudoman-doc-changes-0
added doc for "pull" type backup over sshfs
This commit is contained in:
commit
ed6a054310
1 changed files with 8 additions and 0 deletions
|
@ -271,6 +271,14 @@ Examples
|
|||
# use zlib compression (good, but slow) - default is no compression
|
||||
$ borg create -C zlib,6 /path/to/repo::root-{now:%Y-%m-%d} / --one-file-system
|
||||
|
||||
# Backup a remote host locally ("pull" style) using sshfs
|
||||
$ mkdir sshfs-mount
|
||||
$ sshfs root@example.com:/ sshfs-mount
|
||||
$ cd sshfs-mount
|
||||
$ borg create /path/to/repo::example.com-root-{now:%Y-%m-%d} .
|
||||
$ cd ..
|
||||
$ fusermount -u sshfs-mount
|
||||
|
||||
# Make a big effort in fine granular deduplication (big chunk management
|
||||
# overhead, needs a lot of RAM and disk space, see formula in internals
|
||||
# docs - same parameters as borg < 1.0 or attic):
|
||||
|
|
Loading…
Reference in a new issue