borg
borg copied to clipboard
Deduplicating archiver with compression and authenticated encryption.
https://github.com/Cyan4973/xxHash - not a cryptographic hash fn, not for HMAC! So, maybe we could use it as a crc32 replacement (if we keep the crc32(header+all_data) approach). **borg uses xxh64 at...
try it, test it, document outcome.
## Have you checked borgbackup docs, FAQ, and open Github issues? Yes ## Is this a BUG / ISSUE report or a QUESTION? Question ## System information. For client/server mode...
I was thinking that being able to look up what this archive should actually include could be a helpful feature. 1. To find out what actually should be included/excluded in...
The JSON standard requires strings to be valid UTF-8. There are a bunch of JSON API fields that can contain invalid strings. - The `b`-prefixed fields "intentionally" output invalid strings...
Cf. #2368 Can be implemented similar to the output-type dependent file-size formatting.
master branch: Needs (because openssl is not found via pkg-config): ``` export BORG_OPENSSL_PREFIX=/usr/openssl/1.1 ``` Also, the borgbackup build fails, because it can not find `xxhash.h`, because there is no `(lib)xxh(ash)`...
I put together a first stab at a new `borg tag` command in a fork at https://github.com/billyc/borg The commit itself is at: https://github.com/billyc/borg/commit/9cbcddb69cf9710fb56efea3ba3bd8f44b81ea6d Before I do a PR, I assume...
in borg 1.1, we'll have experimental `borg create --no-cache-sync`, but there is currently no files cache with it. running `borg create` over a bigger amount of files (count as well...
at some places (borg check --repair) we kill repository objects when we encounter IntegrityErrors on them. for many cases this is the right thing to do - if an object...