See wiki for current project status.
rdedup
is a data deduplication engine and a backup software.
rdedup
is generally similar to existing software like
duplicacy
, restic
, attic
, duplicity
, zbackup
, etc.
rdedup
is written in Rust and provides both command line tool
and library API (rdedup-lib
).
## Features
rdedup
was created)rdedup init --help
output for up-to-date listrdedup
rdedup
is using fsync
+ rename
to avoid data corruption even in case of a hardware crash)It's written in Rust. It's a modern language, that is actually really nice to use. Rust makes it easy to have a very robust and fast software.
The author is a nice person, welcomes contributions, and helps users. Or at least he's trying... :)
rdedup
currently does not implement own backup/restore functionality (own
directory traversal), and because of that it's typically paired with tar
or rdup
tools. Built-in directory traversal could improve deduplication
ratio for workloads with many small, frequently changing files.
Cloud storage integrations are missing. The architecture to support it is mostly implemented, but the actual backends are not.
If you have cargo
installed:
norust
cargo install rdedup
If not, I highly recommend installing rustup (think pip
, npm
but for Rust)
If you're interested in running rdedup
with maximum possible performance,
try:
norust
RUSTFLAGS="-C target-cpu=native" cargo install rdedup --vers ...
In case of troubles, check rdedup building issues or report a new one (sorry)!
See rdedup -h
for help.
Rdedup always operates on a repo, that you provide as an argument
(eg. --dir <DIR>
), or via environment variable (eg. RDEDUP_DIR
).
Supported commands:
rdedup init
- create a new repo.
rdedup init --help
for repository configuration options.rdedup store <name>
- store data from standard input under a given
name.rdedup load <name>
- load data stored under given name and write it
to standard output.rdedup rm <name>
- remove the given name.rdedup ls
- list all stored names.rdedup gc
- remove any no longer reachable data.In combination with rdup this can be used to store and restore your backup like this:
norust
rdup -x /dev/null "$HOME" | rdedup store home
rdedup load home | rdup-up "$HOME.restored"
rdedup
is data agnostic, so formats like tar
, cpio
and other will
work,
but to get benefits of deduplication, archive format should not be
compressed
or encrypted already.
RDEDUP_PASSPHRASE
environment variableWhile it's not advised, if RDEDUP_PASSPHRASE
is defined, it will be used
instead of interactively asking user for password.
rdedup is licensed under: MPL-2.0