Welcome to World of IPTV

With

+23k members
+11k threads
+106k posts

we are the most popular IPTV community on the web. 

IMPORTANT NOTE:
WE HAVE RECENTLY NOTICED THAT TOO MANY DOUBLE FAKE ACCOUNTS ARE CREATED IN THE PAST.
TO PREVENT THIS ISSUE THE DECISION WAS MADE THAT IN THE FUTURE A ANNUALLY FEE 20 EURO WILL BE RAISED FOR NEW MEMBERSHIPS.

Join now to the World of IPTV

Forum Rules

Before you start, check out the forum rules first

Account upgrade

Upgrade your account to get access to full features

Advertising

Would you like to place your advertisement with us ?

Resources Manager

Hundreds of IPTV scripts and apps are available for download

Download Mount Dropbox as local folder for remote storage on your server

D

DM 3

Guest
This is a very simple script to install and mount your Dropbox to '/mnt/dropbox' on your server.

This is great for moving files around but also can be used as remote storage for streaming / VoD content.

Copy the code below into a bash file, name it something like 'dropbox_installer.sh'

Then run the file using
Bash:
sh dropbox_installer.sh

And follow the simple onscreen prompts to authorize the connection.

Bash:
#!/bin/bash
#////////////////////////////////////////////////////////////
#===========================================================
# Dropbox FS Installer for Debian / Ubuntu
#===========================================================
# set environment
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
LOG=/tmp/dropbox_fs.log

# are we running as root
if [ $(id -u) != "0" ]; then
    echo "Installer needs to be run as 'root' user."
    echo "Try again as root."
    exit 1;
fi

# check debian / ubuntu os
if [ -n "$(command -v apt-get)" ]; then
    clear

    # start the installer
    echo "---------------------"
    echo "Installing Dropbox FS"
    echo "---------------------"
    echo " "

    echo "Installing Dependencies."

    sudo apt-get update -y >> $LOG 2>&1

    sudo apt-get install -y libfuse2 >> $LOG 2>&1

    sudo apt-get install -y python3-pip >> $LOG 2>&1

    sudo pip3 install dbxfs >> $LOG 2>&1

    mkdir -p /mnt/dropbox >> $LOG 2>&1

    dbxfs /mnt/dropbox

    echo " "
    echo " "
    echo "----------------"
    echo "Install Complete"
    echo "----------------"
    echo " "
    echo " "
    echo "Now browse /mnt/dropbox and you will see all your files and folders."

else
    echo "Installer only works with Debian / Ubuntu based operating systems."
    echo "Ubuntu 16 / 18 works best."
    echo " "
    exit 1;
fi
 
Last edited by a moderator:

iNGK

Extended Member
Ext. Member
Joined
Oct 7, 2019
Messages
97
Reaction score
898
Points
94
Location
0.0.0.0
mmm I don't see any command to mount after server restart :p Maybe you forgot to edit /etc/fstab ? BTW Nice script.
 
Channels MatchTime Unblock CDN Offshore Server Contact
100 cnx / 90€ 5Gbps / 180€ 48CPU-256GRAM 10Gbps 569€ Skype live:giefsl
500 cnx / 350€ 10Gbps / 350€ 48CPU-128GRAM 5Gbps / 349€ TG @changglobize
1000 cnx / 500€ 20Gbps / 700€ 40CPU-128GRAM 20Gbps / €980 http://coronaserver.com
shape1
shape2
shape3
shape4
shape5
shape6
Top
AdBlock Detected

We know, ad-blocking software do a great job at blocking ads. But our site is sponsored by advertising. 

For the best possible site experience please take a moment to disable your AdBlocker.
You can create a Account with us or if you already have account, you can prefer an Account Upgrade.

I've Disabled AdBlock