Tag: local

rsync Local Folder with Remote

Synchronize a local directory with a remote directory via ssh and compression rsync -az -e ssh –delete ip_addr:/home/public /home/local

SCP Copy from Remote to Local System

Copy files/folder from a remote server to this system. scp -r binnyva@192.168.0.100:/home/binnyva/folder_to_copy .

Backup Locally using Rsync

Backup a folder to another local folder using the rsync tool. rsync -av ~/Scripts/ /var/Backup/Rsync/Scripts/ a = Archive Mode v…