Ubuntu安装、更新显卡驱动

不知道为什么,我的Ubuntu系统的NVIDA显卡驱动时不时就抽风。也就是过一段时间驱动就坏了,分辨率不对还登录不进去。但是我的操作仍然很生疏,需要按自己的笔记操作。为了随时能看到自己的操作,决定还是写一篇博客。具体步骤如下:

1. 禁用nouveau驱动

查看是否成功禁用

只要是安装过NVIDIA显卡驱动的,nouveau一般都被禁止了。可以通过命令

 lsmod | grep nouveau

查看。如果没有任何输出就是禁用成功了。否则,请参考禁用步骤

禁用步骤

  1. 创建/etc/modprobe.d/blacklist-nouveau.conf文件,你可以通过如下命令:
sudo gedit /etc/modprobe.d/blacklist-nouveau.conf
  1. 填入以下内容:
blacklist nouveau
options nouveau modeset=0
  1. 重新生产kernel initramfs
sudo update-initramfs -u
  1. 重启电脑

2. 卸载原有驱动

sudo apt-get remove --purge nvidia*

3. 安装

sudo service lightdm stop
sudo ./NVIDIA-Linux-x86_64-390.77.run
sudo service lightdm start

注:其中的一些选项如下:

  • The distribution-provided pre-install script failed! Are you sure you want to continue? 选择 yes 继续。
  • Would you like to register the kernel module souces with DKMS? This will allow DKMS to automatically build a new module, if you install a different kernel later? 选择 No 继续。
  • Nvidia’s 32-bit compatibility libraries? 选择 No 继续。
  • Would you like to run the nvidia-xconfigutility to automatically update your x configuration so that the NVIDIA x driver will be used when you restart x? Any pre-existing x confile will be backed up. 选择 Yes 继续

你可能感兴趣的:(Ubuntu,Ubuntu,NVIDIA,安装显卡驱动,卸载显卡驱动)