rsync.okubeni 731 B

12345678910111213141516171819202122232425262728
  1. Pour lancer le service rsync, 2 choix:
  2. - 1. installer soit le port: rsync.service
  3. - 2. http://www.linuxfromscratch.org/blfs/view/svn/basicnet/rsync.html
  4. En bas de la page, télécharger et lancer
  5. make install-rsyncd dans le dossier où sont les fichiers extraits.
  6. Voici un fichier de configuration basique:
  7. cat > /etc/rsyncd.conf << "EOF"
  8. # This is a basic rsync configuration file
  9. # It exports a single module without user authentication.
  10. motd file = /home/rsync/welcome.msg
  11. use chroot = yes
  12. [localhost]
  13. path = /home/rsync
  14. comment = Default rsync module
  15. read only = yes
  16. list = yes
  17. uid = rsyncd
  18. gid = rsyncd
  19. EOF
  20. Vous trouverez plus d'information sur http://rsync.samba.org/documentation.html