Up one level
COPYING 17982 Jan 23 1996
CREDITS 467 Mar 29 2001
ChangeLog 1708 Jun 1 2003
FAQ 1417 Jun 1 2003
INSTALL 4997 Jun 1 2003
Makefile 6152 Jun 1 2003
NEWS 0 Mar 28 2001
README 5261 Jun 1 2003
TODO 561 Sep 4 2002
archives Feb 21 2005
exclude.default 216 Jun 1 2003
favicon.ico 20 Aug 28 2005
filelist.html
index.html 28132 Nov 13 2004
internal-gopher-menu 29 Aug 28 2005
internal-gopher-unknown 32 Aug 28 2005
localbackuponly.default 1704 Jun 1 2003
rsync-backup-0.2.3-0.src.rpm 23287 Aug 29 2002
rsync-backup-0.2.3.tar.gz 19037 Aug 29 2002
rsync-backup-0.2.4-0.src.rpm 22844 Sep 4 2002
rsync-backup-0.2.4.tar.gz 18572 Sep 4 2002
rsync-backup-0.2.5-0.src.rpm 23685 Jun 1 2003
rsync-backup-0.2.5.tar.gz 19412 Jun 1 2003
rsync-backup-client 4306 Jun 1 2003
rsync-backup-client-0.2.3-0.noarch.rpm 18907 Aug 29 2002
rsync-backup-client-0.2.4-0.noarch.rpm 18552 Sep 4 2002
rsync-backup-client-0.2.5-0.noarch.rpm 18820 Jun 1 2003
rsync-backup-current Feb 14 2003
rsync-backup-current.tar.gz 19437 Jun 1 2003
rsync-backup-current/COPYING 17982 Jan 23 1996
rsync-backup-current/CREDITS 467 Mar 29 2001
rsync-backup-current/ChangeLog 1708 Jun 1 2003
rsync-backup-current/FAQ 1417 Jun 1 2003
rsync-backup-current/INSTALL 4997 Jun 1 2003
rsync-backup-current/Makefile 6152 Jun 1 2003
rsync-backup-current/NEWS 0 Mar 28 2001
rsync-backup-current/README 5261 Jun 1 2003
rsync-backup-current/TODO 561 Sep 4 2002
rsync-backup-current/exclude.default 216 Jun 1 2003
rsync-backup-current/favicon.ico 23 Aug 28 2005
rsync-backup-current/filelist.html
rsync-backup-current/index.html 11782 Mar 7 2003
rsync-backup-current/internal-gopher-menu 32 Aug 28 2005
rsync-backup-current/internal-gopher-unknown 35 Aug 28 2005
rsync-backup-current/localbackuponly.default 1704 Jun 1 2003
rsync-backup-current/redhat Feb 21 2005
rsync-backup-current/redhat/filelist.html
rsync-backup-current/redhat/index.html
rsync-backup-current/redhat/rsync-backup.spec 5928 May 29 2003
rsync-backup-current/rsync-backup-client 4306 Jun 1 2003
rsync-backup-current/rsync-backup-daily-maintenance 1791 Jun 1 2003
rsync-backup-current/rsync-backup-server 3043 Jun 1 2003
rsync-backup-current/rsync-backup-weekly-maintenance 2964 Jun 1 2003
rsync-backup-daily-maintenance 1791 Jun 1 2003
rsync-backup-server 3043 Jun 1 2003
rsync-backup-server-0.2.3-0.noarch.rpm 18394 Aug 29 2002
rsync-backup-server-0.2.4-0.noarch.rpm 18452 Sep 4 2002
rsync-backup-server-0.2.5-0.noarch.rpm 19043 Jun 1 2003
rsync-backup-weekly-maintenance 2964 Jun 1 2003
rsync-backup.spec 5928 May 29 2003
rsync-static-2.5.7-1.i386.rpm 352480 Dec 15 2003
rsync-static-2.5.7-1.src.rpm 449596 Dec 15 2003

Boldfaced directories have been collapsed into one listing. Click on them to see their contents.


README

	Upgrade note; if you've used version 0.2.2 or lower, please
move the following lines from ~/.rsync-backup/localbackuponly to
~/.rsync-backup/exclude :

/home/*/.dontbackup/
/root/.dontbackup/


 	First off, I'd like to thank everyone that's worked on rsync and
ssh and openssh.  This project was able to take off so quickly because
those packages do their respective jobs so well.
	Executive summary: I've put together some shell scripts that
automate the rsync/ssh backup process and satisfy some pretty strict
security requirements.  I'm making them available so that others can use
them, and would appreciate any feedback.  See:
ftp://ftp.stearns.org/pub/wstearns/rsync-backup/
	I had been asked by a coworker to set up a backup solution for
our office that wouldn't require shipping the entire contents of his
drive across the wire each day - rsync was going through my head before
he'd finished the sentence.  I decided to put together a few scripts to
automate the backup; here are the goals:

- Encrypt the backup going across the wire.
- Only ship changed data.

	The above could be handled by the one-liner in the rsync faq.
However, I also wanted:

- Run server as root to preserve permissions and ownership.
- Keep people from seeing each other's backups.

	Giving people access to a root or root equivalent account means
running the server chrooted.  Not a truly big deal, as long as we have a
statically linked rsync at the server end.

- Don't require the server to trust any files sent from the clients.
- Don't even trust that the client will send a correct "rsync -server..."
command; hardcode that at the server.
- Don't ship password files, key files, and other sensitive files across
the wire; back them up locally.

	Shipping _everything_ off to one machine makes that machine a
single point of failure, essentially, if the backup server was broken
into.  That's why I'd prefer that /etc/shadow, ssh keys, ipsec keys,
etc, be backed up locally.

- Allow for a very large number of daily snapshots by using hardlinks on
the server drive.
- Don't require more than 2-4 times the combined client capacity on the
server by hardlinking files even between client backups.

	If it weren't for hardlinks, the last two requirements would
contradict each other.  By using "cp -av --link" to make the snapshots
and running freedups *1 once a week to link identical files that aren't
already hardlinked, I suspect that the 2x-4x bound should be quite
reasonable, especially if a number of the client systems are using the
same distribution.

- Allow admin to use one key for everyone (backups named after the client
IP) or allow named backups (when a machine may change ip or multiple
independant backups may need to be made from one machine).
- The backups could very well be stored in an encrypted container on the
server; one would set up an encrypted loop mount under /backups.  My
package doesn't do anything about that because it's a local mounting
issue.

	The rsync-backup package includes a client and server rpm (tar
available).  I don't know of any reason it couldn't work on any *nix
platform with rsync, ssh, and bash.  The server needs a statically
compiled version of rsync in server:/usr/bin/rsync-static; I really
didn't feel like futzing around with shared libraries in a chroot
environment. I've made up an rpm for this too.  Andrew - would you
consider putting static rpms at the main site?  For those that would
prefer to compile their own from the source tar, simply make
CFLAGS="-static" and copy the resulting rsync binary to
/usr/bin/rsync-static .

 	The 0.2 release is a generally functional package.  It needs a
lot of work, but I'm releasing it for those that are interested. 
Feedback, requests, patches are all welcome.
	To install the ssh keys, please get the ssh-keyinstall package.
 	The astute code reader
may notice a glaring lack of any reference to, ahem, the _restore_
process.  *grin*  Don't worry, it's in design.  I hope to make the
entire restore process run from a single floppy linux, so when a
replacement drive shows up, the admin can boot the system from a Toms
root/boot and do the restore with no more than two floppies and an
Ethernet connection.  Until then, the files could be copied to a
replacement drive right off the backup server subdirectory.
 	One last request.  The package includes a list of files that I
think should be backed up locally because of their password or security
related nature.  I would love to hear from others about additional
password-type files that should be skipped.

*1 Freedups is also a shell script that searches for identical files and
hardlinks them; if it's installed, the weekly maintenance script will
use it.  I've found I can easily save 30% of the server drive space used
with only 3 machines backed up, because the systems share so many
identical files.

References:
rsync-backup package:
	http://www.stearns.org/rsync-backup/
	http://freshmeat.net/projects/rsync-backup/
rsync:
	http://rsync.samba.org
rsync-static
	http://www.stearns.org/rsync-static/
ssh:
	http://www.ssh.com
Openssh:
	http://www.openssh.org
ssh-keyinstall
	http://www.stearns.org/ssh-keyinstall/
freedups:
	http://www.stearns.org/freedups/
	http://freshmeat.net/projects/freedups/
		

rsync-static-2.5.7-1.i386.rpm

Name        : rsync-static                 Relocations: (not relocatable)
Version     : 2.5.7                             Vendor: (none)
Release     : 1                             Build Date: Mon Dec 15 14:30:59 2003
Install Date: (not installed)               Build Host: sparrow
Group       : Applications/Networking       Source RPM: rsync-static-2.5.7-1.src.rpm
Size        : 711582                           License: GPL
Signature   : RSA/MD5, Mon Dec 15 14:31:00 2003, Key ID 012334cbf322929d
Packager    : Andrew Tridgell <tridge@samba.anu.edu.au>
URL         : http://samba.anu.edu.au/rsync/
Summary     : Program for efficient remote updates of files.
Description :
rsync is a replacement for rcp that has many more features.

rsync uses the "rsync algorithm" which provides a very fast method for
bringing remote files into sync. It does this by sending just the
differences in the files across the link, without requiring that both
sets of files are present at one of the ends of the link beforehand.

A technical report describing the rsync algorithm is included with
this package.

This rpm has a static binary, especially useful when the server runs
chrooted.  See the rsync backup project at freshmeat.net for more info.

rsync-backup-client-0.2.5-0.noarch.rpm

Name        : rsync-backup-client          Relocations: (not relocatable)
Version     : 0.2.5                             Vendor: William Stearns
Release     : 0                             Build Date: Sun Jun  1 19:46:14 2003
Install Date: (not installed)               Build Host: sparrow
Group       : Administration/Archiving      Source RPM: rsync-backup-0.2.5-0.src.rpm
Size        : 43354                            License: GPL
Signature   : RSA/MD5, Sun Jun  1 19:46:16 2003, Key ID 012334cbf322929d
Packager    : William Stearns <wstearns@pobox.com>
URL         : http://www.pobox.com/~wstearns/
Summary     : The client portion of an encrypted backup solution for Unices.
Description :
Rsync-backup provides an encrypted backup solution for Unices, including
Linux.

This package needs to be installed on all machines you want backed up.

rsync-backup-server-0.2.5-0.noarch.rpm

Name        : rsync-backup-server          Relocations: (not relocatable)
Version     : 0.2.5                             Vendor: William Stearns
Release     : 0                             Build Date: Sun Jun  1 19:46:14 2003
Install Date: (not installed)               Build Host: sparrow
Group       : Administration/Archiving      Source RPM: rsync-backup-0.2.5-0.src.rpm
Size        : 44926                            License: GPL
Signature   : RSA/MD5, Sun Jun  1 19:46:15 2003, Key ID 012334cbf322929d
Packager    : William Stearns <wstearns@pobox.com>
URL         : http://www.pobox.com/~wstearns/
Summary     : The server portion of an encrypted backup solution for Unices.
Description :
Rsync-backup provides an encrypted backup solution for Unices, including
Linux.

This package only needs to be installed on the server - the meachine that
will hold the backups.

archives/rsync-backup-0.1-1.noarch.rpm

Name        : rsync-backup                 Relocations: (not relocatable)
Version     : 0.1                               Vendor: William Stearns
Release     : 1                             Build Date: Thu Mar 29 00:46:45 2001
Install Date: (not installed)               Build Host: sparrow.websense.net
Group       : Administration/Archiving      Source RPM: rsync-backup-0.1-1.src.rpm
Size        : 50332                            License: GPL
Signature   : RSA/MD5, Thu Mar 29 00:46:46 2001, Key ID 012334cbf322929d
Packager    : William Stearns <wstearns@pobox.com>
URL         : http://www.pobox.com/~wstearns/
Summary     : rsync-backup provides an encrypted backup solution for Unices.
Description :
Rsync-backup provides an encrypted backup solution for Unices, including
Linux.

The files in this collection are part of William Stearns' software archive. If any of the links on this page do not work, you may be viewing an incomplete mirror. There is a complete list of the mirror sites at the starting page for this mirror and at the primary mirror.


Generated Fri May 12 23:44:56 EDT 2006 by htmlfilelist version 0.8.4