Commit e52122f6 authored by ben's avatar ben

Various Changes for 0.9.2. Mention of rdiff taken from README and

rdiff-backup.1


git-svn-id: http://svn.savannah.nongnu.org/svn/rdiff-backup@147 2b77aa54-bcbc-44c9-a7ec-4f6cf2b41109
parent 8069fb19
New in v0.9.2 (2022/06/24)
New in v0.9.2 (2002/06/27)
--------------------------
Interface directly with librsync(.a|.so) instead of running "rdiff"
command line utility. This can significant save fork()ing time when
processing lots of smallish files that have changed. Also, rdiff is
no longer required to be in the PATH.
Further speed optimizations, mostly reducing CPU consumption when
scanning through unchanged files.
Fixed Path bug which could caused globbing and regexp include/exclude
statements to malfunction when the base of the source directory was
"/" (root of filesystem). Thanks to Vlastimil Adamovsky for noting
this bug.
Added quoting for spaces in directory_statistics file, hopefully
making it easier to parse.
New in v0.9.1 (2002/06/19)
--------------------------
......
......@@ -2,21 +2,20 @@ INSTALLATION:
Thank you for trying rdiff-backup. To install, run:
./setup.py install
python setup.py install
The default prefix is /usr, so files are put in /usr/bin,
/usr/share/man/, etc. An alternate prefix can be specified using the
--prefix=<prefix> option. For example:
./setup.py install --prefix=/usr/local
python setup.py install --prefix=/usr/local
REQUIREMENTS:
Remember that you must have Python 2.2 or later and librsync installed
(this means that "python" and "rdiff" should be in your path). To
download, see http://www.python.org and
http://sourceforge.net/projects/rproxy/ respectively.
Remember that you must have Python 2.2 or later and librsync 0.9.5.1
or later installed. To download, see http://www.python.org and
http://sourceforge.net/projects/librsync/ respectively.
For remote operation, rdiff-backup should be in installed and in the
PATH on remote system(s) (see man page for more information).
......
......@@ -18,16 +18,14 @@ rdiff-backup \- local/remote mirror and incremental backup
.SH DESCRIPTION
.B rdiff-backup
is a script, written in
.BR python (1) ,
that uses the
.BR rdiff (1)
program to back up one directory to another. The target directory
ends up a copy of the source directory, but extra reverse diffs are
stored in the target directory, so you can still recover files lost
some time ago. The idea is to combine the best features of a mirror
and an incremental backup. rdiff-backup also preserves symlinks,
special files, hardlinks, permissions, uid/gid ownership (if it is
running as root), and modification times.
.BR python (1)
that backs up one directory to another. The target directory ends up
a copy of the source directory, but extra reverse diffs are stored in
the target directory, so you can still recover files lost some time
ago. The idea is to combine the best features of a mirror and an
incremental backup. rdiff-backup also preserves symlinks, special
files, hardlinks, permissions, uid/gid ownership (if it is running as
root), and modification times.
.B rdiff-backup
can also operate
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment