1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2024-12-26 17:57:59 +00:00

fix docs: --compression lz4 is the default now, fixes #3034

(cherry picked from commit c88528512f)
This commit is contained in:
Thomas Waldmann 2017-09-21 04:26:52 +02:00
parent e7e5b604ce
commit 354d3f0b4f

View file

@ -41,11 +41,11 @@ Examples
# Backup a raw device (must not be active/in use/mounted at that time) # Backup a raw device (must not be active/in use/mounted at that time)
$ dd if=/dev/sdx bs=10M | borg create /path/to/repo::my-sdx - $ dd if=/dev/sdx bs=10M | borg create /path/to/repo::my-sdx -
# No compression (default) # No compression
$ borg create /path/to/repo::arch ~ $ borg create --compression none /path/to/repo::arch ~
# Super fast, low compression # Super fast, low compression (default)
$ borg create --compression lz4 /path/to/repo::arch ~ $ borg create /path/to/repo::arch ~
# Less fast, higher compression (N = 0..9) # Less fast, higher compression (N = 0..9)
$ borg create --compression zlib,N /path/to/repo::arch ~ $ borg create --compression zlib,N /path/to/repo::arch ~