Rsync and Linux

This is how the rsync command works: cd /var/ftp/pub/rsync/; rsync -azvx dest_server::ftp . This is how to generate keys and populate them on the server so you can login to it without a password and run a command: ssh-keygen -t dsa cat .ssh/id_dsa.pub | ssh user@dest_ip “(cd .ssh && cat – >> authorized_keys2)” Here’s how … Read more