How to Install Dropbox on Ubuntu

Install Dropbox on Ubuntu from the official amd64 .deb at dropbox.com/install-linux, the headless tarball for servers, or Flathub com.dropbox.Client: link your account, start dropboxd, and verify with dropbox status.

Published

Updated

Read time 6 min read

Reviewed byDeepak Prasad

Install Dropbox on Ubuntu banner with Dropbox blue cloud sync icon and Ubuntu orange accent

Dropbox syncs files between your Ubuntu machine and Dropbox cloud storage—handy for backups, sharing folders, and keeping documents consistent across laptops and phones. On Linux, Dropbox publishes an official amd64 .deb, a headless tarball for servers, and a Flatpak on Flathub. Legacy nautilus-dropbox in Ubuntu multiverse still exists but wraps a 2019 installer and is not the path Dropbox documents today.

This guide covers how to install Dropbox on Ubuntu using the official Linux install page, a headless setup when the GUI wizard fails behind a proxy, and Flatpak as an alternative. CLI checks below were run on Ubuntu 25.04; the graphical wizard steps match what Dropbox shows on GNOME desktops.

Tested on: Ubuntu 25.04 (Plucky Puffin); kernel 6.14.0-37-generic; amd64.

NOTE
Pick one install channel (official .deb, headless tarball, or Flatpak). Stacking multiple Dropbox clients causes duplicate sync daemons and conflicting ~/Dropbox folders.

Quick command summary

Task Command
Download official package Open dropbox.com/install-linux64-bit .deb
Install .deb cd ~/Downloads && sudo apt install ./dropbox_*_amd64.deb
Headless tarball (64-bit) cd ~ && wget -O - "https://www.dropbox.com/download?plat=lnx.x86_64" | tar xzf -
Start headless daemon ~/.dropbox-dist/dropboxd
Check status (CLI) dropbox status
Install via Flatpak flatpak install flathub com.dropbox.Client
Stop / start CLI client dropbox stop && dropbox start
Remove official package sudo apt purge dropbox

Prerequisites

  • Ubuntu 22.04 LTS, 24.04 LTS, or newer (25.04 used for CLI checks here) on x86_64 for the commands in this article.
  • sudo for .deb and apt installs.
  • A Dropbox account (free tier includes 2 GB).
  • Desktop (Wayland or X11) for the graphical .deb wizard—pure SSH servers should use the headless path.
  • Outbound HTTPS to dropbox.com and dropboxusercontent.com. Restrictive proxies may require dropbox proxy or headless linking from another browser.

Choose an install method

Method Best for Notes
Official .deb Ubuntu Desktop (GNOME, etc.) Current build from install-linux; adds menu icon and tray
Headless tarball VPS, SSH servers, proxy failures Downloads dropbox-lnx.x86_64-* under ~/.dropbox-dist
Flatpak Sandboxed / Flathub workflow com.dropbox.Client on Flathub
nautilus-dropbox (apt) Legacy GNOME integration only 2019.02.14 wrapper; daemon shows Not installed until GUI setup

Avoid the old linux.dropbox.com apt repository with apt-key on modern Ubuntu—codenames often lag new releases and the key import pattern is obsolete.


Open Install Dropbox for Linux and download the 64-bit .deb for Ubuntu (filename shape: dropbox_YYYY.MM.DD_amd64.deb).

Install with apt so dependencies resolve automatically:

bash
cd ~/Downloads
sudo apt install ./dropbox_*_amd64.deb

Replace the glob with the exact filename if your shell does not expand it.

Launch Dropbox from the application menu. The first-run wizard downloads the proprietary daemon, prompts you to sign in, and creates ~/Dropbox. Complete login in the browser window Dropbox opens.


Step 2: Install Dropbox headless (servers and SSH)

When the GUI installer fails—common with proxy errors on corporate networks (Ask Ubuntu)—use Dropbox’s command-line bundle.

Confirm CPU architecture is x86_64, then download and extract:

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

On Ubuntu 25.04 the extracted tree included:

text
~/.dropbox-dist/dropboxd
~/.dropbox-dist/dropbox-lnx.x86_64-258.4.3749/

Start the daemon (keep this terminal open or use screen/tmux):

bash
~/.dropbox-dist/dropboxd

The first run prints a URL. Open it in any browser, sign in, and paste the authorization code back into the terminal. Files sync to ~/Dropbox once linking finishes.

HINT
For 32-bit systems (rare today), swap the download URL to https://www.dropbox.com/download?plat=lnx.x86.

Step 3: Install Dropbox with Flatpak

Flatpak is useful when you prefer Flathub updates or a sandboxed app:

bash
sudo apt install -y flatpak
flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
flatpak install flathub com.dropbox.Client

Launch with:

bash
flatpak run com.dropbox.Client

Flatpak sandboxes differ slightly from the native .deb (paths, portal file access). Use one packaging format for daily work.


Step 4: Legacy nautilus-dropbox (Ubuntu multiverse)

Ubuntu still publishes nautilus-dropbox in multiverse:

bash
sudo apt update
sudo apt install -y nautilus-dropbox

On Ubuntu 25.04 apt reported:

text
nautilus-dropbox 2019.02.14-1.2build2

After install, the CLI exists but the daemon is not present until you finish the GUI wizard:

bash
dropbox version
text
Dropbox daemon version: Not installed
Dropbox command-line interface version: 2019.02.14
bash
dropbox status
text
Dropbox isn't running!

Run dropbox start -i from a graphical session (or open Dropbox from the app menu) to download the proprietary daemon. Treat this as a fallback for Nautilus integration—not a substitute for the current official .deb.


Verify and daily use

Check Command / action
CLI status dropbox statusUp to date or Syncing when linked
CLI version dropbox version
Files on disk ls ~/Dropbox
Autostart dropbox autostart (after official or nautilus-dropbox CLI install)
Stop / start dropbox stop then dropbox start

Available subcommands from dropbox help include exclude, ls, sharelink, throttle, and update.


Uninstall

Official .deb:

bash
sudo apt purge -y dropbox
rm -rf ~/.dropbox ~/.dropbox-dist
# Optional: rm -rf ~/Dropbox   # only when you intend to delete local sync data

Headless tarball only:

bash
dropbox stop 2>/dev/null || pkill -f dropbox
rm -rf ~/.dropbox ~/.dropbox-dist

Flatpak:

bash
flatpak uninstall com.dropbox.Client

nautilus-dropbox:

bash
sudo apt purge -y nautilus-dropbox
rm -rf ~/.dropbox ~/.dropbox-dist

Troubleshooting

Symptom Likely cause Fix
GUI installer stuck on proxy Network blocks Dropbox CDN Use headless dropboxd and authorize via URL
Dropbox daemon version: Not installed Only nautilus-dropbox CLI installed Complete GUI wizard or install official .deb
Dropbox isn't running! Daemon stopped dropbox start or rerun ~/.dropbox-dist/dropboxd
Unsupported location warning Mixed tarball + .deb paths Pick one install method; remove ~/.dropbox-dist and reinstall
Not syncing Selective sync / full disk dropbox exclude list; free space under ~/Dropbox
Old linux.dropbox.com repo 404 / wrong codename Stale third-party apt line Remove /etc/apt/sources.list.d/dropbox.list; use official .deb
apt install nautilus-dropbox pulls 2019 tools Ubuntu package not updated by Dropbox Prefer official .deb from install-linux

References


Summary

The reliable way to install Dropbox on Ubuntu is the official amd64 .deb from dropbox.com/install-linux, then sign in through the first-run wizard. Headless servers should use the wget + tar bundle and ~/.dropbox-dist/dropboxd, especially when GUI setup hits proxy errors. Flatpak (com.dropbox.Client) is a solid alternative on desktop systems that already use Flathub.

Skip the aging nautilus-dropbox / linux.dropbox.com repository path on current LTS releases unless you explicitly need legacy Nautilus integration—and expect dropbox version to show daemon: Not installed until you finish the graphical setup.

Frequently Asked Questions

1. How do I install Dropbox on Ubuntu?

Download the 64-bit .deb from dropbox.com/install-linux, then run sudo apt install ./dropbox_*_amd64.deb from the download folder. On servers without a desktop, extract the official x86_64 tarball and run ~/.dropbox-dist/dropboxd to get a login URL.

2. Is Dropbox in the Ubuntu apt repository?

Ubuntu multiverse ships nautilus-dropbox 2019.02.14—a thin Nautilus wrapper that leaves the daemon as Not installed until you complete the GUI wizard. For current Dropbox builds use the official .deb or headless tarball from dropbox.com/install-linux.

3. How do I install Dropbox on Ubuntu without a GUI?

Run cd ~ && wget -O - "https://www.dropbox.com/download?plat=lnx.x86_64" | tar xzf - then ~/.dropbox-dist/dropboxd. Open the printed URL in a browser on another machine, paste the auth code, and sync into ~/Dropbox.

4. What is the difference between the official .deb and nautilus-dropbox?

The .deb from Dropbox installs the current proprietary daemon and desktop integration. nautilus-dropbox only provides a 2019-era CLI shim and downloads the daemon when you click Start Dropbox in GNOME—it is not the same as installing the latest package directly.

5. Can I install Dropbox with Flatpak on Ubuntu?

Yes. Install flatpak, add the Flathub remote, and run flatpak install flathub com.dropbox.Client. Sandboxed Flatpak builds behave slightly differently from the native .deb—pick one channel for daily use.

6. Why does Dropbox fail with proxy or unsupported location errors?

Corporate proxies and broken GUI installers often block the graphical setup wizard. Use the headless tarball and dropboxd, or set dropbox proxy http://host:port after installing the CLI. Skip the old linux.dropbox.com apt repository on Ubuntu 22.04 and newer.

7. How do I check if Dropbox is running on Ubuntu?

After installing the official package or nautilus-dropbox CLI, run dropbox status. A linked account shows Syncing or Up to date. For headless installs, dropboxd must stay running or use a systemd user service.

8. How do I uninstall Dropbox from Ubuntu?

For the official .deb run sudo apt purge dropbox and remove ~/.dropbox ~/.dropbox-dist ~/Dropbox if you no longer need data. For Flatpak use flatpak uninstall com.dropbox.Client. For nautilus-dropbox use sudo apt purge nautilus-dropbox.
Deepak Prasad

R&D Engineer

Founder of GoLinuxCloud with more than 15 years of expertise in Linux, Python, Go, Laravel, DevOps, Kubernetes, Git, Shell scripting, OpenShift, AWS, Networking, and Security. With extensive …