Last active
December 16, 2015 01:59
-
-
Save hortonew/5359099 to your computer and use it in GitHub Desktop.
Fix graphics issues in Ubuntu
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
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