Well, I tried this and it worked for me. I hope it will be the same with you:
Try this:
cd /media
sudo mkdir data
sudo chown <youruser> data
Where youruser is, obviously, different than root.
Now type this:
sudo blkid | grep UUID
You will be able to identify UUID and TYPE of your filesystem where dropbox folder is stored.
Copy the choosen pair somewhere. Now edit fstab sudo gedit /etc/fstab
and append at the end of the file something like this:
UUID=yourUUID /media/data yourTYPE defaults 0 0
Ok. Now, last step:
dropbox stop
Check if is really stopped. If it isn't, kill it (You can use ps
and kill
commands).
Delete configuration:
rm -rf ~/.dropbox
and restart dropbox
dropbox start
It will be start syncing files from the internet.