Skip to content

Instantly share code, notes, and snippets.

@pylemon
Forked from douglasmiranda/gist:2527687
Created October 27, 2012 05:37
Show Gist options
  • Save pylemon/3963079 to your computer and use it in GitHub Desktop.
Save pylemon/3963079 to your computer and use it in GitHub Desktop.
linux: fixing dropbox - Ubuntu 12
#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)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment