rdedup
rdedup copied to clipboard
Data deduplication engine, supporting optional compression and public key encryption.
This depends on #99 , "backend"/storage config. I am personally using backblaze since it's extra cheap. Right now I'm using `rclone` tool to sync my file storage with b2 bucket,...
Would you also like to implement some error correction code like e.g. *Reed-Solomon*. There's already a mature [crate](https://crates.io/crates/reed-solomon) in crates.io? *Bup* ist doing it by just running the `par2` tool...
Hi, First, than's for rdedup! This looks like a fantastic project to meet some real needs. I would be happy to write some documentation on this if you can point...
By writing index files one could have random access to stored data. There is unfortunate naming collision. I'll call current `index` files, a `chunk-index`, and the new data `byte-index`. Initial...
That would help non-rusties and may boost adoiption. (It's a great tool after all!)
I often use [structopt](https://crates.io/crates/structopt) over `clap` directly, as I personally find it more readable and prefer the matching semantics for subcommands. I would be happy to submit a PR to...
The rust-lzma building in Windows have some problems. https://github.com/fpgaminer/rust-lzma/issues/20
Would it be possible to create a [Homebrew](https://brew.sh/) formula for rdedup? Maybe it would be possible to use formulas of other Rust-based projects as a starting point. The build steps...
Can it be used to backup filesystem images (e.g. LVM2 snapshots), for them to be read-only-mounted later (without extracting fully)?
While experimenting with rdedup on my RAM limited VPS I noticed that the init and load commands used around 1GB of memory. This caused the program to swap which made...