Installation of rsync
For security reasons, running rsync server as
an unprivileged user and group is encouraged.
groupadd rsyncd &&
useradd -c rsyncd -d /home/rsync -g rsyncd -s /bin/false rsyncd
Install rsync by running the following
commands:
./configure --prefix=/usr &&
make &&
make install