This tutorial will be showing you how to install Dropbox on Ubuntu 20.04 LTS desktop from Dropbox Linux repository. We will not download the installer from Dropbox Linux Download page, because the installer on that page is outdated.

If you don’t have a Dropbox account yet, then click here to sign up. Next, open a terminal window, run the following command to create a source list file for Dropbox. Nano is a command line text editor, which allows you to edit text files in the terminal.

sudo nano /etc/apt/sources.list.d/dropbox.list

How to Install Dropbox on Ubuntu 20.04 From Official Repository Cloud Storage Dropbox ubuntu

Add the following line to this file.

deb [arch=i386,amd64] http://linux.dropbox.com/ubuntu bionic main

How to Install Dropbox on Ubuntu 20.04 From Official Repository Cloud Storage Dropbox ubuntu

To save the file in Nano text editor, press Ctrl O, then press Enter to confirm. To exit the file, press Ctrl X.  Next, we need to run the following command to import Dropbox GPG key to Ubuntu 20.04 system.

sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 1C61A2656FB57B7E4DE0F4C1FC918B335044912E

How to Install Dropbox on Ubuntu 20.04 From Official Repository Cloud Storage Dropbox ubuntu

If you see the following error:

gpg: keyserver receive failed: no keyserver available

or

gpg: keyserver receive failed: No data

You can fix this error by using a different keyserver. So instead of keyserver.ubuntu.com you can use pgp.mit.edu.

sudo apt-key adv --keyserver pgp.mit.edu --recv-keys 1C61A2656FB57B7E4DE0F4C1FC918B335044912E

Next, update local package index and install Dropbox.

sudo apt update

sudo apt install python3-gpg dropbox

The package python3-gpg is used by Dropbox to verify binary signature. Note that the dropbox package is just a helper package. It’s not the actual Dropbox binary.

Now you can start the Dropbox GUI installer from your application menu.

How to Install Dropbox on Ubuntu 20.04 From Official Repository Cloud Storage Dropbox ubuntu

You can also run the following command to start it from terminal. The -i option will attempt to install Dropbox daemon if it’s not installed.

dropbox start -i

Click OK to install the daemon.

How to Install Dropbox on Ubuntu 20.04 From Official Repository Cloud Storage Dropbox ubuntu

How to Install Dropbox on Ubuntu 20.04 From Official Repository Cloud Storage Dropbox ubuntu

After the Dropbox daemon is installed, a new tab will be opened in your web browser asking you to link your computer to Dropbox account.

How to Install Dropbox on Ubuntu 20.04 From Official Repository Cloud Storage Dropbox ubuntu

Now you can use Dropbox on your Ubuntu 20.04 desktop. Dropbox Linux client supports HTTP, SOCKS4 and SOCKS5 proxy. You can configure proxy in Dropbox Preferences > Proxies. This is useful if your country or area is banned from accessing Dropbox. If you want to set up your own fast proxy server, follow this Shadowsocks tutorial.

How to Install Dropbox on Ubuntu 20.04 From Official Repository Cloud Storage Dropbox ubuntu

By default, Dropbox will automatically start at login. To disable this you can run this command:

dropbox autostart n

To enable autostart again, run

dropbox autostart y

For more Dropbox command line usage, issue this command:

man dropbox

I hope this tutorial helped you install Dropbox on Ubuntu 20.04 desktop. As always, if you found this post useful, then subscribe to our free newsletter to get new tutorials. Take care.

Rate this tutorial

[Total: 0 Average: 0]