Main menu

Pages

Install Dropbox on Ubuntu 16.04 via Command Line

nstall Dropbox on Ubuntu 16.04 via Command Line. Terminal commands ot install Dropbox (PPA) on Linux Ubuntu Systems. Also learn how to uninstall Dropbox from Ubuntu. Dropbox 7.3.29 is the latest version of Ddesktop Client released for Linux Ubuntu Systems. The following tutorial explains how to install Dropbox on Ubuntu.
dropbox-setup
Dropbox is a wonderful application that enables storage and access of files online. Users can easily share files, video, images. Simply create a link to share any file in your Dropbox. Then send the link by email, chat, or even text message. The best part is that when you send someone a link to a file, they can preview and download a copy — even if they don’t have a Dropbox account.
All the files are synced across all the devices and enables offline access. Which means, all the files are available on your computer even when you’re offline, so you can work from anywhere. For security reasons, Dropbox includes 30-day version history, in case you accidentally delete a file or want to restore a previous version.

Install Dropbox 7.3.29

dropbox-cli
Install Dropbox 7.3.29 on Ubuntu 16.04, Ubuntu 15.10 Wily Werewolf, Ubuntu 15.04 Vivid Vervet, Ubuntu 14.04 Trusty Tahr and derivative systems:

On 32bit

Run the following commands in Terminal to install Dropbox on 32 Bit Ubuntu Linux Systems:

sudo apt-get install libappindicator1wget https://d1ilhw0800yew8.cloudfront.net/client/dropbox-lnx.x86-7.3.29.tar.gztar -xvf dropbox-lnx.x86-7.3.29.tar.gzcd .dropbox-dist/ ./dropboxd

On 64bit

Run the following commands in Terminal to install Dropbox on 32 Bit Ubuntu Linux Systems:

sudo apt-get install libappindicator1wget https://d1ilhw0800yew8.cloudfront.net/client/dropbox-lnx.x86_64-7.3.29.tar.gztar -xvf dropbox-lnx.x86_64-7.3.29.tar.gzcd .dropbox-dist/ ./dropboxd

Once installed, open Dropbox from Ubuntu Dash or Terminal.

Alternate Installation Method

Dropbox Headless Install via command line
The Dropbox daemon works fine on all 32-bit and 64-bit Linux servers. To install, run the following command in your Linux terminal.
32-bit:

cd ~ && wget -O - "https://www.dropbox.com/download?plat=lnx.x86" | tar xzf -
64-bit:
cd ~ && wget -O - "https://www.dropbox.com/download?plat=lnx.x86_64" | tar xzf -

Next, run the Dropbox daemon from the newly created .dropbox-dist folder.

~/.dropbox-dist/dropboxd

If you’re running Dropbox on your server for the first time, you’ll be asked to copy and paste a link in a working browser to create a new account or add your server to an existing account. Once you do, your Dropbox folder will be created in your home directory. Download this Python script to control Dropbox from the command line. For easy access, put a symlink to the script anywhere in your PATH.
reactions