Glam Prestige Journal

Bright entertainment trends with youth appeal.

whenever I start my computer, dropbox does not automatically start itself aswell. Furthermore, when I try to start it using the program launcher, nothing happens. I then tried the command line (dropbox status), which gives: Dropbox isn't running!

Naturally I want to start it using the command dropbox start, which returns:

Dropbox isn't running!
Dropbox is already running!

Odd! My current workaround is to delete the .dropbox-dist and .dropbox folders from ~/ and then do dropbox start -i, which starts the installer again and gives me access to my dropbox up to the point at which I have to restart my computer.

Any solution on this?

Thanks!

3

2 Answers

Found this thread upon running into the same problem on Ubuntu 14.04 (unsure of which dropbox build I'm using). I'm logging in via ssh and after copying some files to the remote ~/Dropbox/ folder, I found that they weren't syncing. That's when I tried to manually start dropbox:

dropbox start

and got the isn't running/is already running message. What seemed to work was checking if there was already a dropbox process:

ps aux | grep dropbox

Found there was indeed, so I killed it and then restarted dropbox:

kill <pid>
dropbox start
dropbox status
1

You can fix this by installing dropbox using software-center or Type following command in terminal.

sudo apt-get install nautilus-dropbox 

This will integrate nautilus with dropbox. After that you don't need to check and run dropbox manually.

1

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy