Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/miekg/rdup
The only backup program that doesn't make backups!
https://github.com/miekg/rdup
Last synced: 1 day ago
JSON representation
The only backup program that doesn't make backups!
- Host: GitHub
- URL: https://github.com/miekg/rdup
- Owner: miekg
- License: gpl-3.0
- Created: 2011-09-14T06:54:35.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2024-03-05T13:52:56.000Z (8 months ago)
- Last Synced: 2024-10-26T21:34:03.996Z (15 days ago)
- Language: C
- Homepage: https://miek.nl
- Size: 6.48 MB
- Stars: 109
- Watchers: 13
- Forks: 18
- Open Issues: 14
-
Metadata Files:
- Readme: README
- Changelog: ChangeLog
- License: LICENSE
- Authors: AUTHORS
Awesome Lists containing this project
README
# TO BUILD
Run:
autoreconf && ./configure && make
Then a:
make install
as root, to get `rdup` installed.
Optionally you can also do a:
make check
to run the test suite, note that you will need DejaGNU installed
for this to work. If you find errors in this testrun, please
look at testlogs/rdup.log and send that to the author.rdup depends on:
* Gmake for compilation
* Glib to build. Glib is the low level C library of the
GTK project. Configure will check for this.
* PCRE2 library
* LibNettle - if you want rdup-tr to do path encryption and
for sha hashingoptional:
* Libarchive - if you want to have rdup-tr
rdup should compile on all unix platforms out there. It is tested on
the following* Linux
* Solaris
* FreeBSD
* Cygwin./configure will try to do the right thing, if you don't have
specific libraries certain functionality isn't built.# DIFFERENCE WITH RSYNC
While rsync really works well, I wanted to have the ability to gzip
and/or encrypt the backed up files. rsync can not do that. That is why I
wrote rdup, which, with the help of rdup-tr and rdup-up will do that.Rdup was created to make custom backups, but due to its flexibility it
can be used for much more.# DOCUMENTATION
rdup is a utility inspired by rsync and the plan9 way of doing backups.
rdup it self does not backup anything, it only print a list of absolute
filenames to standard output. Auxiliary scripts are needed that act on
this list and implement the backup strategy. This way rdup can be kept
lean and mean. Currently the (stripped) rdup executable measures 26 KB (on
i386) and I don't expect that to increase much (maybe it will even get
smaller).The manual page explains rdup's options and usage, see rdup(1). For an
introduction into making backups see rdup-backups(1). Helper tools
that are included are rdup-tr (see rdup-tr(1)) and rdup-up (see
rdup-up(1)). All manual pages include examples to get you started.A small script 'rdup-simple' is also included, this makes starting
with rdup even more easy: rdup-simple ~ /backup. Will create a
backup of your homedir in /backup.# COPYRIGHT
All files in this archive are copyrighted by Miek Gieben, unless stated
otherwise in the file itself.(c) Miek Gieben, 2005-2011.
# LICENSE
GPL, version 3, see the file LICENSE.
# Coding style
All code has been indented by `indent -linux`