


1 root root 6153239 Apr 7 00:25 /opt/backup/OpenStack-Networking.pdfĭrwx. Let’s verify whether directory is copied or not, execute below command, ~]# ls -ld /opt/backup/* Sent 4.09M bytes received 96 bytes 8.19M bytes/sec Let’s assume we want to copy or sync pkumar user’s home directory to /opt/backup folder, execute the below rsync command with options -zavh, ~]# rsync -zavh /home/pkumar /opt/backup

Example:2) Copy or Sync directory locally (rsync -zavh) In above we have used the options like -z for compression, -v for verbose output and -h for human readable output. Sent 4.09M bytes received 35 bytes 2.73M bytes/sec Let’s assume we want to copy a file from pkumar user’s home directory to /opt/back folder, execute the below rsync command ~]# rsync -zvh /home/pkumar/OpenStack-Networking.pdf /opt/backup Let’s jump into the useful examples of rsync command Example:1) Copy or Sync files locally (rsync -zvh)
#GRSYNC YUM REDHAT ARCHIVE#
#GRSYNC YUM REDHAT INSTALL#
In Debian Like operating Systems (Ubuntu & Linux Mint) use below apt command to install rysnc tool, ~]# apt install rsync -y When we do minimal installation of CentOS & RHEL OS then rsync package is not part of default installation, so to install rsync on CentOS & RHEL, run the beneath yum command ~]# yum install rsync -y Rsync command is available for all UNIX and Linux like operating systems.
