The rsync command in Linux is one of the most powerful tools for file synchronization, especially when working with remote servers or large volumes of data. Thanks to its efficiency, rsync optimizes bandwidth usage by transferring only modified files, making it an ideal option for all kinds of file management tasks. In this article, we will present practical examples of rsync commands that you can apply in real-world situations, whether locally or remotely.

1. Basic Synchronization Between Local Directories

Suppose you have two directories on your local machine, original/ and duplicate/, and you want to synchronize them. This is useful when working on development projects or simply needing to keep an up-to-date backup of your files.

Command:

rsync -av original/ duplicate/

Explanation:

  • -a: Archive mode, which preserves permissions, modification dates, and directory structure.
  • -v: Verbose mode, to show details about the transferred files.
  • The command will copy all files and subdirectories from original/ to duplicate/, keeping the same structure and file attributes.

2. Remote Synchronization with a Server

If you need to sync files between your local machine and a remote server, rsync is an excellent choice. Imagine you have a remote server at IP address 192.168.1.100 and you want to synchronize the /home/user/docs/ directory with a folder on your remote server.

Command:

rsync -av /home/user/docs/ user@192.168.1.100:/home/user/backup_docs/

Explanation:

  • user@192.168.1.100: The remote server’s address and the user you are connecting with.
  • :/home/user/backup_docs/: The destination directory on the remote server.
  • This command transfers the files from docs/ on your local machine to the backup_docs/ folder on the remote server.

3. Bidirectional Synchronization

Sometimes, you want to keep two directories synchronized in both directions. For example, if you work on two different systems, one at home and the other in the office, and both contain files that are regularly modified. For this, you can use rsync to synchronize both directories.

Command:

rsync -av --ignore-existing directory1/ directory2/
rsync -av --ignore-existing directory2/ directory1/

Explanation:

  • The first command syncs files from directory1/ to directory2/, ignoring files that already exist in directory2/.
  • The second command does the same in reverse, ensuring both directories are synchronized.

4. Transferring Large Files with Progress Bar

When transferring large files over a network, it’s important to have visibility of the transfer progress. rsync offers the -P option to show a progress bar while transferring files. Additionally, with --partial, you can resume interrupted transfers.

Command:

rsync -azP /home/user/large_files/ user@192.168.1.100:/home/user/large_files_backup/

Explanation:

  • -a: Archive mode, preserving file attributes.
  • -z: Compresses files during the transfer.
  • -P: Displays a progress bar and allows you to resume interrupted transfers.

This command is ideal for transferring large files when the connection might be unstable or when you want to ensure that data isn’t lost if the transfer is interrupted.

5. Excluding Specific Files During Synchronization

Imagine you want to sync a directory but exclude certain files, such as temporary or backup files that don’t need to be transferred. To do this, you can use the --exclude modifier.

Command:

rsync -av --exclude='*.bak' --exclude='*.tmp' /home/user/project/ user@192.168.1.100:/home/user/project_backup/

Explanation:

  • --exclude='*.bak': Excludes all files with the .bak extension.
  • --exclude='*.tmp': Excludes all files with the .tmp extension.
  • This command synchronizes /home/user/project/ to the remote server but omits temporary and backup files.

6. File Transfer with Compression and Bandwidth Limitation

If you’re transferring files over a slow network, you can use the option --bwlimit to limit the amount of bandwidth used by rsync during the transfer. This prevents the transfer from consuming all available bandwidth, which could affect other tasks on the network.

Command:

rsync -avz --bwlimit=1000 /home/user/docs/ user@192.168.1.100:/home/user/docs_backup/

Explanation:

  • -z: Compresses the files during the transfer.
  • --bwlimit=1000: Limits the transfer speed to 1000 KB/s (1 MB/s).
  • This command synchronizes the files while ensuring the network bandwidth is not fully consumed.

7. Synchronizing Files and Deleting Missing Items from the Destination

Sometimes, you need to synchronize a directory and delete files from the destination that are no longer present in the source directory. To do this, use the --delete option.

Command:

rsync -av --delete /home/user/docs/ user@192.168.1.100:/home/user/docs_backup/

Explanation:

  • --delete: Deletes files in the destination directory that are not present in the source directory.
  • This command ensures that the destination directory is an exact replica of the source directory, removing any obsolete files.

8. Creating a Backup with Rsync

One of the key advantages of rsync is its ability to create efficient backups. You can create a backup by combining --backup with the --dir option to specify where the backup files will be stored.

Command:

rsync -a --delete --backup --backup-dir=/path/to/backup /path/to/SRC [DEST]

Explanation:

  • --backup: Enables backup mode, saving modified or deleted files.
  • --backup-dir=/path/to/backup: Specifies the directory where backup files will be stored.
  • This command synchronizes the source directory and stores any deleted or modified files in the backup directory.

Conclusion

rsync is an incredibly powerful and flexible tool that you can use to optimize file synchronization, make backups, and transfer data efficiently. The examples provided here cover a wide range of practical cases, from local synchronization to remote transfers, including complex network configurations. Mastering rsync will allow you to significantly improve your workflow, reduce bandwidth usage, and ensure your data is always synchronized and backed up.

Scroll to Top