For some reason Dropbox started asking about superuser password... However it does not need acces to other folders than user ones. It seems that there is one problem with one of the paths in its python code. Just find the path to dropbox executable:
$ which dropbox
/usr/bin/dropbox
/usr/bin/dropbox
then modify with root privileges this file.
sudo vi /usr/bin/dropbox
The incorrect line is the first of these two lines:
sudo vi /usr/bin/dropbox
The incorrect line is the first of these two lines:
PARENT_DIR = os.path.expanduser("/var/lib/dropbox")
DROPBOXD_PATH = "%s/.dropbox-dist/dropboxd" % PARENT_DIR
In my case the first one needs to point to my home, then it looks like this:
PARENT_DIR = os.path.expanduser("~")
Then start dropbox
$ dropbox start -i
source: http://blog.ishans.info/2013/12/26/fixing-authentication-is-needed-to-run-usrbindropbox-as-the-super-user-error-in-linux/
No hay comentarios:
Publicar un comentario