mirror of
https://github.com/borgbackup/borg.git
synced 2024-12-25 01:06:50 +00:00
add zstd to compression help
This commit is contained in:
parent
2588e50f0b
commit
3d32407e9a
1 changed files with 9 additions and 1 deletions
|
@ -1968,7 +1968,13 @@ def do_break_lock(self, args, repository):
|
|||
Do not compress.
|
||||
|
||||
lz4
|
||||
Use lz4 compression. High speed, low compression. (default)
|
||||
Use lz4 compression. Very high speed, very low compression. (default)
|
||||
|
||||
zstd[,L]
|
||||
Use zstd ("zstandard") compression, a modern wide-range algorithm.
|
||||
If you do not explicitely give the compression level L (ranging from 1
|
||||
to 22), it will use level 3.
|
||||
Archives compressed with zstd are not compatible with borg < 1.1.4.
|
||||
|
||||
zlib[,L]
|
||||
Use zlib ("gz") compression. Medium speed, medium compression.
|
||||
|
@ -1995,6 +2001,8 @@ def do_break_lock(self, args, repository):
|
|||
Examples::
|
||||
|
||||
borg create --compression lz4 REPO::ARCHIVE data
|
||||
borg create --compression zstd REPO::ARCHIVE data
|
||||
borg create --compression zstd,10 REPO::ARCHIVE data
|
||||
borg create --compression zlib REPO::ARCHIVE data
|
||||
borg create --compression zlib,1 REPO::ARCHIVE data
|
||||
borg create --compression auto,lzma,6 REPO::ARCHIVE data
|
||||
|
|
Loading…
Reference in a new issue