Posts Tagged With: rsync

Rsync via SSH tunnel

Tagged with: , , , , ,

Rsync via SSH tunnel


rsync -rogpav -e ssh --delete /home/binnyva 192168.0.30:/var/Backup/home
No Comments »

Sync Two Folders

Tagged with: , , , ,

Sync two folders using rsync command


rsync -rogpav --delete /home/me /backup/folder
No Comments »

Backup Locally using Rsync

Tagged with: , , , , , ,

Backup a folder to another local folder using the rsync tool.


rsync -av ~/Scripts/ /var/Backup/Rsync/Scripts/

a = Archive Mode
v = Verbose

[tags]backup,linux,command,rsync,folder,local,tools[/tags]

No Comments »

Backup Using Rsync

Tagged with: , , , , , ,

Backups the script folder to a remote location. Original Article…

rsync -avze ssh Scripts/ binnyva@binnyva.com:backup/Scripts/
No Comments »