I have a GeForce GTX 620, and I can't install the proprietary graphics driver in Ubuntu 18.04. I tried downloading and installing the drivers from the NVIDIA website and through the terminal.
Asked
Active
Viewed 869 times
1 Answers
0
Remove all the nvidia packages.
sudo apt update sudo apt-get remove '^nvidia' sudo apt autoremoveIf you have added an Nvidia PPA to
/etc/apt/sources.listremove that PPA by prefacing its line in sources.list with a#to comment it out. Runsudo apt updateto refresh the list of available software.Reboot with
sudo rebootRun the following command to install the correct proprietary Nvidia driver.
sudo ubuntu-drivers install && sudo rebootThe
sudo ubuntu-drivers installcommand installs drivers that are appropriate for automatic installation including their dependencies.
karel
- 122,292
- 133
- 301
- 332