Rclone - an introduction. Sync files to the cloud with ease!

in #blog6 years ago

(This guide was written specifically for Ubuntu 16.04, however rclone is compatible with many operating systems)

Throughout my somewhat short, definitely amazing journey with linux and ubuntu, I have often had the need to sync local files to the cloud, and wasn't exactly sure of the best way to do this.

Backing up files for example is always a task for which i'd prefer to use the cloud, rather than external media. I've also been working on a couple github projects - rclone is perfect for pushing local data to a repo as well.

You can use it to sync files to various cloud providers, with a relatively simple command line interface. Best of all, it's free as is usually the case with ubuntu/linux tools.

I've also put together a script that should make downloading and installing rclone a snap!

 sudo apt-get update
 mkdir ~/rclone
 cd ~/rclone
 wget https://downloads.rclone.org/rclone-v1.39-linux-amd64.zip
 unzip rclone-v1.39-linux-amd64.zip
 cd ~/rclone/rclone-v1.39-linux-amd64
 ./rclone

The shell script above will update all applications, download the rclone zip archive, and extract the contents to a folder it creates: ~/rclone

It will then run rclone once so you can see the terminal commands associated with the tool.

Be sure to check out the official rclone website for more info:
https://www.rclone.org

The rclone wiki can be found here:
https://github.com/ncw/rclone/wiki


rclone-120x120.png

Sort:  

Congratulations! This post has been upvoted from the communal account, @minnowsupport, by Chivesz from the Minnow Support Project. It's a witness project run by aggroed, ausbitbank, teamsteem, theprophet0, someguy123, neoxian, followbtcnews, and netuoso. The goal is to help Steemit grow by supporting Minnows. Please find us at the Peace, Abundance, and Liberty Network (PALnet) Discord Channel. It's a completely public and open space to all members of the Steemit community who voluntarily choose to be there.

If you would like to delegate to the Minnow Support Project you can do so by clicking on the following links: 50SP, 100SP, 250SP, 500SP, 1000SP, 5000SP.
Be sure to leave at least 50SP undelegated on your account.

I'am having a small problem with rclone, last time I wanted to backup some folders from my google drive account to my second one, rclone deleted my files from the first folder.

You have to be really carefull with the sync option! Had this a couple of times. Usually I only use the copy option giving duplicate files a new name.

I'm sorry to hear that, must be very frustrating! I'd suggest maybe reaching out to the devs on this. https://github.com/ncw/rclone - this may be a known issue

ok..thanks bro