18

I have Ubuntu 12.04 and today when I started my laptop I saw that the Dropbox icon is missing from the top panel and I don't know how can I get it back.

Zanna
  • 72,312
Petros Andreou
  • 183
  • 1
  • 1
  • 7

4 Answers4

11

This will work for versions 12.04 and above in case after installing Dropbox from their site using the DEB package, the icon does not show in Unity.

  1. Remove Dropbox if already installed

    sudo apt-get remove dropbox
    
  2. Install the nautilus-dropbox package

    sudo apt-get install nautilus-dropbox
    
  3. In the case the steps above still do not work do the following (This package should already be installed but just in case):

    sudo apt-get install libappindicator1
    
  4. You will now need to restart Nautilus. You can either logout and then login or simply Reboot the PC.

The end result should be something like:

enter image description here

Tested on 12.04, 12.10, 13.04 and 13.10.

Luis Alvarado
  • 216,643
4

Try this:

dropbox stop && dbus-launch dropbox start

References:

zeekvfu
  • 451
  • 4
  • 4
1

There is a package that solves all these issues. First, remove the currently installed package, and then install the caja-dropbox package:

sudo apt purge *dropbox* && sudo apt install caja-dropbox

Then link and do all the required chores.

dacabdi
  • 200
  • 1
  • 5
0

It looks like your Dropbox preferences have not been set to: "Start Dropbox on system startup".

If you check that selection, once your system starts, Dropbox will be loaded when Ubuntu starts up, and you will be able to see the Dropbox icon in tray.

Quick check: Try starting Dropbox manually. If you manage to do, you will be able to see the icon in tray for now.

Be sure to check the above option, for if you fail to do so, the tray icon will not be persist after a reboot, unless of course you manually open Dropbox each time after the computer has started.

SirCharlo
  • 40,096
Amol Sale
  • 1,043