The rsync package contains the rsync utility. This is useful for synchronizing large file archives over a network.
Download (HTTP): http://rsync.samba.org/ftp/rsync/old-versions/rsync-2.6.5.tar.gz
Download (FTP): ftp://ftp.samba.org/pub/rsync/old-versions/rsync-2.6.5.tar.gz
Download MD5 sum: 3691cdf1540d0649ba679edce6bae8fc
Download size: 643 KB
Estimated disk space required: 12 MB
Estimated build time: 0.2 SBU
For security reasons, running the rsync server as an unprivileged user and group is encouraged. If you intend to run rsync as a daemon, create the rsyncd user and group with the following commands issued by the root user:
groupadd -g 48 rsyncd && useradd -c "rsyncd Daemon" -d /home/rsync -g rsyncd \ -s /bin/false -u 48 rsyncd
Install rsync by running the following commands:
./configure --prefix=/usr && make
If you have DocBook-Utils installed and wish to build HTML documentation, issue:
cd doc && docbook2html rsync.sgml && cd ..
To test the results, issue: make check.
Now, as the root user:
make install
If you built the HTML documentation, install it using the following commands as the root user:
install -v -m755 -d /usr/share/doc/rsync-2.6.5 && install -v -m644 doc/*.html /usr/share/doc/rsync-2.6.5
For client access to remote files, you may need to install the OpenSSH-4.1p1 package to connect to the remote server.
This is a simple download-only configuration to set up running rsync as a server. See the rsyncd.conf(5) man-page for additional options (i.e., user authentication).
cat > /etc/rsyncd.conf << "EOF" # This is a basic rsync configuration file # It exports a single module without user authentication. motd file = /home/rsync/welcome.msg use chroot = yes [localhost] path = /home/rsync comment = Default rsync module read only = yes list = yes uid = rsyncd gid = rsyncd EOF
You can find additional configuration information and general documentation about rsync at http://rsync.samba.org/documentation.html.
Note that you only want to start the rsync server if you want to provide an rsync archive on your local machine. You don't need this script to run the rsync client.
Install the /etc/rc.d/init.d/rsyncd init script included in the blfs-bootscripts-6.1 package.
make install-rsyncd
Last updated on 2005-08-14 15:03:38 -0600