Skip to content

Instantly share code, notes, and snippets.

@nisargap
Created July 27, 2017 03:03
Show Gist options
  • Save nisargap/330307929bbfcc33dd4100592c16b1b6 to your computer and use it in GitHub Desktop.
Save nisargap/330307929bbfcc33dd4100592c16b1b6 to your computer and use it in GitHub Desktop.
Fixing Steam on Ubunrtu 16.04 for NVIDIA graphics processors
# Find the library that's messing things up
sudo find /usr -iname "*libGL.so*" -exec ls -l {} \;
# Remove that library
rm ...
# In my case it was the mesa libraries
# Create the symlink for the proper Nvidia Library in this case its nvidia-378 but it could be something else
sudo ln -s /usr/lib/nvidia-378/libGL.so.1 /usr/local/lib/libGL.so.1.2.0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment