I've had this problem before on Ubuntu 14.04.
I found out I had a corrupt link to the correct file, so by removing it and linking it again I fixed it.
Not sure where the file itself is though, I couldn't find it anymore.
Try the following in the terminal:
This should work. A soft link should be enough, if not try the same as above but without the "-s".
I found out I had a corrupt link to the correct file, so by removing it and linking it again I fixed it.
Not sure where the file itself is though, I couldn't find it anymore.
Try the following in the terminal:
Code:
# rm /usr/lib/x86_64-linux-gnu/libGL.so
# whereis libGL.so
# ln -s /output/of/previous/command.so /usr/lib/x86_64-linux-gnu/libGL.soThis should work. A soft link should be enough, if not try the same as above but without the "-s".
