No Dropbox icon in the indicator panel?

91,258

Solution 1

Found a solution at the comment #7 from the Ubuntu bug:

  1. Install package sudo apt-get install libappindicator1

  2. Log out, and then log back in (or issue dropbox stop && dropbox start at the command line)

Note: this method is still applicable in 2021 year, it fixes the problem with Dropbox icon in Ubuntu MATE 21.10.

Solution 2

If I recall correctly there is an unfixed bug in the dropbox package for 13.10. Cf. launchpad. This is at present a confirmed, but unassigned bug.

If this is not that bug, then read this question.

Solution 3

There is another issue that has popped up recently.
This is with regard to 14.04, being that,

Dropbox runs in the background but does not show the indicator panel icon even when appindicator1 is installed.

The only work around i found was to re-install Dropbox by getting the .deb file form the link: Download Dropbox

Solution 4

Thanks to Denilson dropbox stop && dropbox start worked for me - but only until next reboot.

Solved it permanently by writing a short shell script (which i put into /opt directory):

#!/bin/bash
sleep 60s
dropbox stop && dropbox start -i &

(mark as executable) and then click on the Ubuntu button on the left upper corner, type "startup" and there add an entry to call that start that shell script /opt/dropboxrestart.sh.

Solution 5

As of ubuntu 14.04 do this to put dropbox icon on menu bar :

sudo apt-get install nautilus-dropbox

You can start Dropbox from your applications menu.

UPDATE

issue this to view what Ubuntu package is involved

dpkg -l|grep dropbox

... output

ii  dropbox   2015.10.28    amd64   cloud synchronization engine - CLI and Nautilus extension

so now dropbox package description gives mention of nautilus ... so lets view all files listed in that package ... issue

dpkg -L dropbox 

sure enough it lists files which are nautilus related ... so to answer your comment - I would say the normal dropbox package does contain customizations for integration with nautilus so that stand along package nautilus-dropbox is no longer necessary

Share:
91,258

Related videos on Youtube

tusharkant15
Author by

tusharkant15

Updated on September 18, 2022

Comments

  • tusharkant15
    tusharkant15 over 1 year

    I have recently installed Ubuntu on my machine and everything has been working fine, except I don't see the Dropbox indicator. I have installed and re-installed Dropbox multiple times and can confirm that it's running in the background (with ps -e | grep dropbox).

    Does anyone know how to get it back?

  • Sardinha
    Sardinha over 10 years
    Answer in the above publication.
  • oligofren
    oligofren over 9 years
    well, I can start it from the menu, but the icon stil does not show up. I guess that is what I get when using beta versions of 14.10 ...
  • Stefano
    Stefano over 9 years
    worker but needed a reboot
  • king_julien
    king_julien about 9 years
    I've tried executing "dropbox stop && dropbox start" automatically after resume using a script I put in '/etc/pm/sleep.d/'. The log says it is working just fine, but the dropbox indicator is still missing. Thus if I want to see the dropbox icon I have to execute this command manually after resume...
  • Léo Léopold Hertz 준영
    Léo Léopold Hertz 준영 almost 9 years
    This bug also in Debian 8.
  • shea
    shea almost 9 years
    Nice solution. You can also combine this into one line sleep 60s && dropbox stop && dropbox start & and put directly into command field in Startup Applications
  • Chris Good
    Chris Good over 8 years
    I have this problem now I'm using SSD instead of hard drive - must be a timing issue as there is no problem when I use hard drive. I found I could not just modify command of dropbox Startup Application because next time dropbox starts, it just overwrites it. Also I had to add a sleep between the stop and start as the stop returns well before it actually stops. I created /usr/local/bin/dropbox_delayed which does sleep 60 && dropbox stop && sleep 60 && exec dropbox startand created new Startup Application DropboxDelayed which has command dropbox_delayed. Works fine for me.
  • Chris Good
    Chris Good over 8 years
    Also, I could not put multiple commands in Startup Application command i.e. sleep 60 && dropbox stop etc. Does not work (Ubuntu 12.04).
  • Tom Chiverton
    Tom Chiverton over 8 years
    In 15.10 installing this extra package makes the Dropbox icon show up in the KDE system tray.
  • makkasi
    makkasi about 8 years
    I have this problem now , early 2016 and this solution is not working
  • deFreitas
    deFreitas almost 8 years
    It not solves the problem
  • B. Butz
    B. Butz about 7 years
    Can anyone explain the relation between the dropbox package and the nautilus-dropbox package? And as a bonus, the relation of these two to Dolphin and nautilus?
  • Autodidact
    Autodidact almost 7 years
    Awesome, this worked wonderfully (on Kubuntu 14.04.5)!