1 / 6

How to Uninstall NVIDIA Drivers in Ubuntu

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/

Télécharger la présentation

How to Uninstall NVIDIA Drivers in Ubuntu

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. How to Uninstall NVIDIA Drivers in Ubuntu

  2. 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-.*'

  3. Install Ubuntu-Desktop Run the following command to reinstall ubuntu-desktop. $ sudo apt-get install ubuntu-desktop

  4. 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

  5. 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

  6. Thank You Visit for details https://fedingo.com/how-to-uninstall-nvidia-drivers-in-ubuntu/

More Related