What is Rclone:

Rclone is a tool designed to manage and synchronize data across various cloud storage services and local filesystems. The tool can be installed on your systems/servers and can be easily connected to multiple cloud storages like Amazon S3, Google Drive, Mega, Open Drive, Dropbox and many more. You just need to setup for your storage and get an extra directory right into your local listing with contents. It’s amazing. The tool is useful when comes to the streaming providers using Xtream UI, XUI.ONE or other panels, they don’t need to have files locally to be selected and used but these clouds can be used instead.

I’ll be covering Linux (Ubuntu) version of Rclone and setup these services one by one along with my YouTube videos.

I’m offering paid services on Telegram @lofertech
If you’re looking for Premium Quality dedicated & DMCA free servers, checkout: AliPacket.Com

Install Rclone On Ubuntu:

Login to your server SSH and open terminal. Run following command and latest Rclone is installed and ready to go:

apt install zip unzip curl ; curl -O https://downloads.rclone.org/rclone-current-linux-amd64.zip ; unzip rclone-current-linux-amd64.zip ; cd rclone-*-linux-amd64 ; sudo cp rclone /usr/bin/ ; sudo chown root:root /usr/bin/rclone ; sudo chmod 755 /usr/bin/rclone ; rclone version

The output should be information about the version you just got installed. So, Rclone is now ready and we need to move out to setting up cloud storages one by one.

Let’s start with MEGA.NZ and then keep on going for the other storage providers as I keep making videos on them.

I do offer paid services on Telegram @lofertech
Get DMCA FREE Dedicated Servers and Xtream UI Panel Pre installed at: AliPacket.Com

Setup Rclone For MEGA.NZ On Ubuntu:

Following is the video about proper setting up the storage with Rclone, the easy explained and step by step video:

STILL TO MAKE :::

So, let’s start the thing over SSH.

Run following command to open setup for Rclone:

rclone config

Now you need first reply with n stands for new setup:

a

Reply with name of the storage (later be used for identification, recommended to use storage company name like Mega):

Mega

Now you’ll see a list of providers and their services that Rclone is supporting, watch carefully and reply with the relevant number of the provider.

In our case, It’s 29 for Mega so, replying up with 29

a

It’ll now ask for mega creditionals, reply with your Mega account email:

[email protected]

Now It’ll ask about password, reply him with 1 so, we’ll add our own password which we use to login to our Mega account:

1

Reply back again with the Mega account password:

password

Now It’s asking, do you want to edit advance settings? for sure not so reply with 2 (i think, reply accordingly):

2

So now It’s asking for is it all ok, should we save this provider hit him Yes:

1

And finally need to out from the Rclone setup menu by replying back with q stands for quite:

q

We still have much more to do yet, ah yes actually. Run following command to counter fusermount errors:

sudo ln -s /bin/fusermount /bin/fusermount3

After this, we need to first create a folder on our server which will be used to mount for Mega storage. Create one if you not have some already by:

mkdir -p /mega

So now our folder is created now we need to mount our mega directory to this folder as permanent. For that we need to setup auto run command in crontab as follow:

Xtream UI or XUI ONE users use following:

nano etc/crontab

Rest use this for cron setup:

crontab -e

You’ll see some commands setup already, go in the last and add following command:

@reboot root rclone mount mega: /mega --copy-links --no-gzip-encoding --no-check-certificate --allow-other --allow-non-empty --umask 000 --vfs-cache-mode writes 

Now Press CTRL+X + Y and hit enter to save the file and reboot your system. While server is up again, check your listing should be there via some FTP, disktop or following command:

ls /mega

Now you should be getting list of available directories and files inside over your terminal. If not things not gone well, try run following command and check directory on some FTP software like WinSCP.

Remember: While running the command, it will not return to a reply if all good otherwise it will show some error.
Remember: While mounting to the targeted directory, make sure to use correct service name you setup on Rclone and correct directory name on your local server.

For other storage mounts, you can try the starter steps to open up mount storage menu, select relevant service, add required information, submit and follow other steps. I will be writing on more soon as plan to make video on them. Until this is the one, make sure to watch my Videos and Subscribe to the channel.