ubuntu系统安装nvidia驱动

版权声明:本文为博主原创文章,能帮到你很开心(^_^)~,欢迎转载,转载请注明出处【https://blog.csdn.net/qq_36396104】~【博客园新博客地址,欢迎大家来踩:https://www.cnblogs.com/GrPhoenix/】 https://blog.csdn.net/qq_36396104/article/details/88766996
sudo apt install nvidia-387 nvidia-387-dev 

遇到的错误:

[sudo] password for tmp: 
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Package nvidia-387 is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source

E: Package 'nvidia-387' has no installation candidate
E: Unable to locate package nvidia-387-dev

解决方案: How to Install Latest Nvidia Drivers on Ubuntu

First start by adding the Proprietary GPU Drivers PPA to your system package sources and update your system package cache using apt command.

$ sudo add-apt-repository ppa:graphics-drivers/ppa
$ sudo apt update

Then install the latest stable nvidia graphics (which is nvidia-387 at the time of writing this article) using the following command.

$ sudo apt install nvidia-387

Alternatively, open Software & Updates under System Settings and go to Additional Drivers tab, select the required driver version and click “Apply Changes”.

Next, reboot your computer for the new driver to start working. Then use the lsmod command to check your installation status with the following command.

It will list all currently loaded kernel modules in Linux, then filter only nvidia using grep command.

$ lsmod | grep nvidia 

Some times updates do not work well as expected. If you face any issues with the latest drivers installation such as black screen on startup, you can remove it as follows.

$ sudo apt-get purge nvidia*

If you want to completely remove graphics-drivers PPA as well, run the following command to remove PPA.

$ sudo apt-add-repository --remove ppa:graphics-drivers/ppa

You might also like to read these following related articles on Gaming.

  1. 5 Best Linux Gaming Distributions That You Should Give a Try
  2. 12 Amazing Terminal Based Games for Linux Enthusiasts

That’s all! You can ask questions or share any useful additional information via the feedback form below.

猜你喜欢

转载自blog.csdn.net/qq_36396104/article/details/88766996