Rsync backup Linux, using rsync to backup files or folder under Linux.: "Synchronize two folders with rsync
If you want to keep two folders in sync rsync is also your best option.
From local to remote computer
rsync -avz --delete /source/folder user@remote.server:/destination/folder
From remote to local computer
rsync -avz --delete user@remote.server:/source/folder /destination/folder
From one folder to another on the same server
rsync -av --delete /source/folder /destination/folder"
'via Blog this'
No comments:
Post a Comment