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
  • 70,465

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
  • 211,503
3

Try this:

dropbox stop && dbus-launch dropbox start

References:

zeekvfu
  • 421
  • 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
  • The istaller can't find caja-dropbox – Paul A. May 15 '18 at 20:17
  • 1
    @PaulA. I think that the repo has it, but maybe I should have checked. Caja is the file manager that comes with MATE. – dacabdi May 17 '18 at 13:15
  • 1
    Well, I don't know what MATE is. What are the side-effects of installing caja-dropbox (assuming I can find it)? – Paul A. May 18 '18 at 17:16
  • @PaulA Ubuntu MATE, caja-dropbox integrates with caja, which is the file manager installed by default in Ubuntu MATE. – dacabdi May 21 '18 at 15:06
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
  • 39,486
Amol Sale
  • 1,006