Monday 15 October 2018

How to use rsync utility in Centos 7



Rsync is open source software that used to synchronize files/folders from local to local computers and remote computers as well over SSH with compression and encrypted files.
Following command to copy data from a location to another location:

[root@linuxcnf ~]# rsync -avzP /path/to/sourcedata /path/to/destination/

Change source and destination path accordingly.

It’s done!!!

No comments:

Post a Comment