Live Sync with lsyncd
Productivity Sauce
rsync is an excellent and versatile backup tool, but it does have one drawback: you have to run it manually when you want to back up your data. Sure, you can use cron to create scheduled backups, but even this solution cannot provide seamless live synchronization. If this is what you want, then you need the lsyncd tool, a command-line utility which uses rsync to synchronize (or rather mirror) local directories with a remote machine in real time. To install lsyncd on your machine, download the latest .tar.gz archive from the project's Web site, unpack it, and use the terminal to switch to the resulted directory. Run then the ./configure command followed by make, and make install (the latter command requires root privileges). lsyncd is rather straightforward in use, as it features just one command and a handful of options. The lsyncd command requires only two parameters: the source and the target directory, for example:
lsyncd /path/to/source /path/to/target
This command syncs two local directories, but lsyncd can also mirror a local directory to a folder on a remote machine. For example, the following command syncs the source directory on the local machine with the target directory on a remote machine which has the 192.168.1.7 IP address, connecting to the remote server as the user "monkey":
lsyncd /path/to/source monkey@192.168.1.7:/path/to/target/
In most cases, you have to provide a password to successfully connect to a remote server, so to make the command above work, you have to use the --no-daemon option which prevents the process from running as a daemon:
lsyncd --no-daemon /path/to/source monkey@192.168.1.7:/path/to/target/
Another useful option is --exclude. As the name suggests, it allows you to specify files or directories that you don't want to sync.
Comments
comments powered by DisqusSubscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Support Our Work
Linux Magazine content is made possible with support from readers like you. Please consider contributing when you’ve found an article to be beneficial.
News
-
New Linux Kernel Patch Allows Forcing a CPU Mitigation
Even when CPU mitigations can consume precious CPU cycles, it might not be a bad idea to allow users to enable them, even if your machine isn't vulnerable.
-
Red Hat Enterprise Linux 9.5 Released
Notify your friends, loved ones, and colleagues that the latest version of RHEL is available with plenty of enhancements.
-
Linux Sees Massive Performance Increase from a Single Line of Code
With one line of code, Intel was able to increase the performance of the Linux kernel by 4,000 percent.
-
Fedora KDE Approved as an Official Spin
If you prefer the Plasma desktop environment and the Fedora distribution, you're in luck because there's now an official spin that is listed on the same level as the Fedora Workstation edition.
-
New Steam Client Ups the Ante for Linux
The latest release from Steam has some pretty cool tricks up its sleeve.
-
Gnome OS Transitioning Toward a General-Purpose Distro
If you're looking for the perfectly vanilla take on the Gnome desktop, Gnome OS might be for you.
-
Fedora 41 Released with New Features
If you're a Fedora fan or just looking for a Linux distribution to help you migrate from Windows, Fedora 41 might be just the ticket.
-
AlmaLinux OS Kitten 10 Gives Power Users a Sneak Preview
If you're looking to kick the tires of AlmaLinux's upstream version, the developers have a purrfect solution.
-
Gnome 47.1 Released with a Few Fixes
The latest release of the Gnome desktop is all about fixing a few nagging issues and not about bringing new features into the mix.
-
System76 Unveils an Ampere-Powered Thelio Desktop
If you're looking for a new desktop system for developing autonomous driving and software-defined vehicle solutions. System76 has you covered.
Live Sync with lsyncd
be it sysadmins or home users. We use tar as a basis for our own backup script,
but I recognize the power of rsync as a basis.
Also, there's so many tools to choose from, and I guess rsync tools can mix,
e.g. you can have lsyncd running, while also having a tool like rsyncBackup or
Rdiff-backup ?
Don't forget to make backups for databases (MySQL for example) with their tools, though,
to keep databases consistent!
Anyway, I like tools based on proven and mature simple Un*x tools like tar and rsync,
cause you'll also have all other Un*x tools to mix with them, e.g. being able to keep a cron
job separate from your backup program itself keeps things manageable.
Mike