Thursday, April 25, 2024
 Popular · Latest · Hot · Upcoming
15
rated 0 times [  15] [ 0]  / answers: 1 / hits: 5718  / 2 Years ago, mon, july 11, 2022, 2:58:38

in a system popup window on startup. Anyway to avoid this?



fwiw I authenticate ok with my pw.



I think this may have started after my recent upgrade from Ubuntu 12 -> 13


More From » startup

 Answers
5

Find where your dropbox executable is using the following command:



which dropbox


This will show you the actual filepath of the dropbox executable file. In most cases, it will be /usr/bin/dropbox. Open it with your preferred editor:



sudo vi /usr/bin/dropbox


Find the following line and change



PARENT_DIR = os.path.expanduser("/var/lib/dropbox")


to



PARENT_DIR = os.path.expanduser("~") 


This will direct Dropbox to access your Home folder for the config files. Save and restart dropbox:



dropbox start -i


Further explanations


[#26049] Tuesday, July 12, 2022, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
oargrou

Total Points: 336
Total Questions: 105
Total Answers: 113

Location: Vietnam
Member since Sun, Oct 18, 2020
4 Years ago
;