12 lines
303 B
Plaintext
12 lines
303 B
Plaintext
this README goes over starting the rsync daemon and using rsync to copy files.
|
|
copy rsyncd.conf to /etc/rsyncd.conf
|
|
|
|
to start rsync as a daemon
|
|
rsync --daemon
|
|
|
|
to test the rsync daemon ask it for a listing of availible items
|
|
rsync rsync://localhost
|
|
|
|
to test rsncing
|
|
rsync -r rsync://localhost/home .
|