TW

Results 2664 comments of TW

Well, FOSS projects often have no funds to pay a professionally done security review, so they get more or less for-free review. Guess, the borg2 crypto is much better (and...

> Can someone please show me how to do tar -xzv --strip-components=1 as the filter program? No, because `borg import-tar` expects a stream **in tar format**, so you can't use...

Stripping path components needs to be done inside borg, check if that is already implemented for `import-tar`.

Yeah, correct, `--strip-components` is not implemented for `borg import-tar` (and also not for `borg create` and not for `borg recreate`, #1650).

import-tar and create are doing similar things (creating a borg archive from either tar member items or from the fs).

borg create usually makes backups from your filesystem. if you pump data in via the stdin mode, it is not expected to do any processing on that (and it does...

You can use `borg mount REPO` and then use `find` or whatever tool you prefer. I once shortly experimented with an additional index for borg, but in the end didn't...

Not sure what you mean / how that would be useful.

borg runs on a lot of platforms. guess introducing external tools that are not present on all of them is not desirable. currently borg is mostly used on posix platforms,...

btw, i experimented with an index based on the `whoosh` pure python indexing library long ago. but as it took quite a lot of time to update those indexes and...