RSYNC over SSH

If you ever need to copy files across a network and wanted a quick and easy way to do it without FTP, NFS, SAMBA or an other remote directory access solutions. RSYNC is usually part of most Unix or Linux distributions and can be easily installed.

The most basic of options is below:

rsync -avz -e ssh user@remotehost:/path/to/dir /local/dir/

Leave a Reply