Nowadays, when I start Dropbox from command line, I found that the Dropbox system tray icon is missing.

I tried ps, and found that Dropbox is running in background:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
% ps -efww | grep -v grep | grep dropbox
nostalg+ 17209 1 0 Apr11 pts/6 00:02:45 /home/nostalgia/.dropbox-dist/dropbox-lnx.x86_64-3.18.1/dropbox /newerversion start
% ps -efww | grep -v grep | grep dropbox nostalg+ 17209 1 0 Apr11 pts/6 00:02:45 /home/nostalgia/.dropbox-dist/dropbox-lnx.x86_64-3.18.1/dropbox /newerversion start
		% ps -efww | grep -v grep | grep dropbox 
		nostalg+ 17209     1  0 Apr11 pts/6    00:02:45 /home/nostalgia/.dropbox-dist/dropbox-lnx.x86_64-3.18.1/dropbox /newerversion start

dropbox-cli indicates that Dropbox is working properly:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
% dropbox-cli status
Syncing (3 files remaining, 41 mins left)
Uploading "x.html"...
Downloading 2 files (25.8 KB/sec, 41 mins left)
% dropbox-cli status Syncing (3 files remaining, 41 mins left) Uploading "x.html"... Downloading 2 files (25.8 KB/sec, 41 mins left)
		% dropbox-cli status
		Syncing (3 files remaining, 41 mins left)
		Uploading "x.html"...
		Downloading 2 files (25.8 KB/sec, 41 mins left)

I googled, eventually and luckily, found the solution:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
% dbus-launch /opt/dropbox/dropbox start
% dbus-launch /opt/dropbox/dropbox start
		% dbus-launch /opt/dropbox/dropbox start

It seems that it’s a bug of Dropbox. 🙁

Now, Dropbox works like a charm again.

References:

Leave a Reply

Your email address will not be published. Required fields are marked *