How to Use Rsync (Remote Sync) Command in Linux
Rsync (Remote Sync) is a most commonly used command for copying and synchronizing files and directories remotely as well as locally in Linux/Unix systems. With the help of rsync command you can copy and synchronize your data remotely and locally across directories, across disks and networks, perform data backups and mirroring between two Linux machines. This article explains 10 basic and advanced usage of the rsync command to transfer your files remotely and locally in Linux based machines. You don’t need to be root user to run rsync command. Some advantages and features of Rsync command It efficiently copies and sync files to or from a remote system. Supports copying links, devices, owners, groups and permissions. It’s faster than scp ( Secure Copy ) because rsync uses remote-update protocol which allows to transfer just the differences between two sets of files. First time, it copies the whole content of a file or a directory from source to destina...