Skip to main content

Sync files from remote system via command line - Linux, Ubuntu, Debian

If you are using more than one laptop/computers in your day to day life for eg: Your personal laptop and Office laptop. Chances of needing a file from one laptop on the other laptop is very common. We don't want to copy the files over the system again and again. We just want the changes to the files made in one system to reflect on the other system.

In this post we will see a simple way to keep files in sync between your multiple laptops/computers. Linux has an wonderful utility called rsync which can be used to sync files/folders between systems in a very optimised way (copy only modified and new files/folders)
If you don't have rsync utility installed on your system, install it by
$ sudo apt-get update
$ sudo apt-get install rsync
Also we are planning to sync files from remote systems, So lets have the openssh-server installed on the both machines
$ sudo apt-get install openssh-server
openssh-client will be by default installed on linux machines, if not install it
$ sudo apt-get install openssh-client

Basic Usage of rsync

$ rsync source destination
The above command will simply send/sync all the files recursively under the directory 'source' to the 'destination'
To send/sync files to a remote systems
$ rsync source username@host:destination
Note: "username@host:"  will point to home directory of username in the host (Please note the colon (:) at the end of hostname)
With some more options from rsync we can create a single line file syncronizer as follows
$ rsync -avzP username@host:source destination
Options used:
-a     - archive mode
-v     - increase verbosity
-P     - To see the file transfer progress with its speed
-z     - compress file data during transfer
         Use this option so that you can utilise your network bandwidth efficiently
Note: I have changed the username@host term to the source option to intimate that remote host can be either source or destination.

Skip Some files from Sync/Copy

$ rsync -avzP --exclude "*.conf" username@host:source destination
--exclude option will exclude the specified file(s) syncing from source to destination. You can give a file name, Directory name or even file globs like (*.something)

To skip more files

Enter your list of files to be skipped/excluded in a text file and use that in rsync with  --exclude-from option
# File exclude-list.txt
*.conf
bin
blib
Now pass this file name to --exclude-from option
$ rsync -avzP --exclude-from exclude-list.txt username@host:source destination

Some more options to make it more finer tool

Sometimes we might have just changed the permissions/groups for a file/folder but we don't want to reflect that change on the other machine.
$ rsync -avzP --no-group --no-perms --no-owner username@host:source destination
You can create an alias of the above command and make life even more easier. rsync utility has many other options available please do check manual of rsync for more options (man rsync).

Comments

Popular posts from this blog

TataSky Refresh after Recharge - Activate after Recharge

If you are using TataSky and doing recharge occasionally and that too after disconnection, this post will be very helpful for you. Most of the time you will not get the channels listed as soon as you make the payment. It will display message to Subscribe for that channel. You can easily get channels back by simply giving a missed a call from your registered mobile number. Note: Make sure your TV and SetupBox is on and showing the error message Give missed call to  +91 80892 80892 (Soft Refresh)   wait for 1 minute and If still not active then try giving missed call to  +91 90405 90405 (Heavy Refresh). Ad: Planning to buy a Best low budget Smart TV? Consider  Acer 109 cm (43 inches) I Series 4K Ultra HD Android Smart LED TV AR43AR2851UDFL (Black)  - You can get this TV as low as for 20,000 Rs - which has Bluetooth, WiFi, Android and good customer ratings (4.4/5). Note: Price based on offers, click on the link to see current price on th...

Smart Bulb Control using Python Script

Smart Bulb Control using Python Script Hello again, In this article, we will see how to control the smart bulb on the local network unsing a python script and will guide you through the process of setting up and using this script to seamlessly manage your smart lights. Whether you want to turn your lights on or off, adjust brightness levels, or even change color settings, this script provides a convenient way to interact with your smart bulbs right from your Python environment. Example lits pytest The light color will turn green if all tests pass or red if test fails. And while starting the bulb glows with a warm white (yellow) color Currently the script is tested on Wipro Smart bulb s and Amazon Basics smart bulbs   The source code of the script is available on  github  Please do check the repo and feel free to clone the repo. Let's get started by setting up the environment: Clone or download the repository to your local machine. Navigate ...

Make use of JavaScript console methods

When I say JavaScript console methods, the one and only thing that hit most of our mind is console.log() and we use it a lot and only that some might be familiar with error() and debug(). Did you ever think of checking if there are any other methods available in console other than log? Most of us don't do that, but knowing those methods might have saved lot of our development time. In this post I will show you some of the console methods which will be very useful in our day to day coding. Log based on condition console.assert(assertion, log_message); To print something on the console only if the assertion failed - assertion can be any expression which returns a boolean. Note: In chrome this log will print as an error with message saying "Assertion failed:" with the log_message passed. In FireFox its a normal log message. Log number of occurrence  console.count([label]); If we want to count something, it may be a click, may be a callback, or event triggers. We do...