rsync (Remote Sync) is a powerful and efficient utility in Linux used for synchronizing files and directories between two locations over a network. It is commonly used for backups, mirroring data, and transferring files efficiently by only copying the differences between source and destination.
This guide will walk you through the installation, basic usage, and advanced techniques of rsync to help you effectively manage files over a network.
Most Linux distributions come with rsync pre-installed. To check if it is installed, run:
rsync --version
If it is not installed, you can install it using the package manager of your distribution:
sudo apt install rsync
sudo yum install rsync
sudo dnf install rsync
sudo pacman -S rsync
📌 How to transfer files from Windows to a remote server using rsync via PuTTY SSH?
To use rsync on Windows via PuTTY SSH, you need to have installed:
PuTTY for SSH connection
rsync and OpenSSH on Windows
Pagent (optional) for automatic authentication with the SSH key
If you have downloaded MSYS2, you can install rsync easily using pacman, MSYS2’s package manager.
pacman -Syu
pacman -Su
✅ This step ensures that you have the latest version of the package manager.
pacman -S rsync
💡 If you need openssh for SSH transfer, install that too:
pacman -S openssh
Verify installation
To verify that rsync was installed correctly, run:
rsync --version
The basic syntax of rsync is:
rsync [options] source destination
To synchronize files between two local directories:
rsync -av /source/directory/ /destination/directory/
The trailing slash / in the source ensures that only the contents of the directory are copied, not the directory itself.
To transfer files from a local system to a remote server:
rsync -avz /local/directory/ user@remote_host:/remote/directory/
*After we have added the command in MSYS2, we will add the SSH data to connect to the remote server and the result will be displayed:
This command securely copies the files to the remote server using SSH.
Check if the command was successfully fulfilled on your remote server:
To copy files from a remote server to your local machine. By default, rsync uses SSH for secure communication. You can explicitly specify SSH with:
rsync -avz -e ssh /local/directory/ user@remote_host:/remote/directory/
If SSH uses a non-default port (e.g., 2222), specify it like this:
rsync -avz -e "ssh -p 2222" /local/directory/ user@remote_host:/remote/directory/
To delete extra files in the destination that are not present in the source:
First step we add extra files in PuttySSH terminal:
cd /home/user/test_backup/
touch file1.txt file2.log file3.jpg
mkdir extra_files
touch extra_files/old_file.txt
Now synchronize the directory without certain files, and rsync will delete the files that are no longer in the source:
rsync -av --delete /source/directory/ /destination/directory/
📌 What does it do?
All files that are on the server but NOT in test/local will be deleted.
MSYS2 result
PuttySSH result
Warning: Use –delete cautiously, as it permanently removes files from the destination.
To exclude specific files or directories:
rsync -av --exclude 'file_or_directory' /source/ user@remote_host:/destination/
MSYS2 result
PuttySSH result
For multiple exclusions, use:
rsync -av --exclude={'file1','dir1','*.log'} /source/ user@remote_host:/destination/
You can run rsync in the background using nohup:
nohup rsync -avz /source/ user@remote_host:/destination/
This allows the process to continue even after logging out.
In the local directive we added a new file new_file.txt33333333, then we disconnected the PuttySSH terminal, and the above command allows us to send files even when the server is disconnected.
To schedule automatic synchronization using cron, open the crontab:
crontab -e
Add a job to run rsync every day at midnight:
0 0 * * * rsync -avz /source/ user@remote_host:/destination/
rsync is a versatile and powerful tool for file synchronization and transfer over a network. Whether you are backing up data, mirroring directories, or migrating files between servers, rsync provides an efficient and reliable solution. By leveraging its various options and automation capabilities, you can effectively manage your files in Linux environments.