60 likes | 73 Views
Sometimes you may need to uninstall NVIDIA drivers from Ubuntu/Debian systems. Here is how to complete uninstall all NVIDIA drivers in Ubuntu.<br><br>Visit https://fedingo.com/how-to-uninstall-nvidia-drivers-in-ubuntu/
E N D
Remove Purge First, search which NVIDIA packages have been installed. For this, open terminal and run the following command. $ dpkg -l | grep -i nvidia You will see a list of packages with string ‘nvidia’ in their name. Except, nvidia-common package, all other packages must be purged. If you want to individually remove each package, you can do it with ‘rm -r’ command. If you are sure you want to purge all NVIDIA packages including nvidia-common, run the following command. $ sudo apt-get remove --purge '^nvidia-.*'
Install Ubuntu-Desktop Run the following command to reinstall ubuntu-desktop. $ sudo apt-get install ubuntu-desktop
Enable nouveau module Sometimes, when you purge all NVIDIA packages, it may end up blacklisting nouveau module. To ensure that it is loaded during boot, add it to /etc/modules, with the following command. $ echo 'nouveau' | sudo tee -a /etc/modules
Remove xorg.conf Remove xorg.conf file as well. $ sudo rm /etc/X11/xorg.conf Alternatively, you can also directly run the following command to uninstall NVIDIA drivers from your system. $ sudo nvidia-uninstall
Thank You Visit for details https://fedingo.com/how-to-uninstall-nvidia-drivers-in-ubuntu/