Skip to content

Instantly share code, notes, and snippets.

@hortonew
Last active December 16, 2015 01:59
Show Gist options
  • Save hortonew/5359099 to your computer and use it in GitHub Desktop.
Save hortonew/5359099 to your computer and use it in GitHub Desktop.
Fix graphics issues in Ubuntu
http://askubuntu.com/questions/41681/blank-screen-after-installing-nvidia-restricted-driver
Remove everything to do with the Nvidia proprietary drivers.
sudo nvidia-settings --uninstall
sudo apt-get remove --purge nvidia*
Start from scratch.
sudo apt-get remove --purge xserver-xorg-video-nouveau xserver-xorg-video-nv
Reinstall all the things!
sudo apt-get install nvidia-common
sudo apt-get install xserver-xorg-video-nouveau
sudo apt-get install --reinstall libgl1-mesa-glx libgl1-mesa-dri xserver-xorg-core
Reconfigure the X server.
sudo dpkg-reconfigure xserver-xorg
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment