Created
April 29, 2012 03:07
-
-
Save douglasmiranda/2527687 to your computer and use it in GitHub Desktop.
fixing dropbox - Ubuntu 12
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#When dropbox is not working on ubuntu 12 | |
#you tried to execute on terminal: | |
#dropbox start | |
#and the error is something like this: | |
#Starting Dropbox.../home/YOUR_USER/.dropbox-dist/libstdc++.so.6: version `GLIBCXX_3.4.11' not found (required #by /usr/lib/x86_64-linux-gnu/libproxy.so.1) | |
#Failed to load module: /usr/lib/x86_64-linux-gnu/gio/modules/libgiolibproxy.so | |
#Done! | |
#FIX | |
cd /home/YOUR_USER/.dropbox-dist/ | |
#find the libstdc++.so.6 | |
locate libstdc++.so.6 | |
#probably you'll get this: | |
#/usr/lib/x86_64-linux-gnu/libstdc++.so.6 | |
#/usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.16 | |
#then | |
sudo mv libstdc++.so.6 libstdc++.so.6.orig | |
sudo ln -s /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.16 libstdc++.so.6 | |
#Done, just execute from terminal with: | |
dropbox start | |
#If it pass.. better you quit and execute it in usual way. (GUI) |
I just upgraded to Xubuntu 12.10 and had the same problem. Other than my version of libstdc++ now being 6.0.17, these instructions worked. Thanks for posting.
I'm glad it helps you guys.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks! I wasn't sure what consequences the error would have, but this seems to have fixed it.