赞
踩
任意位置打开终端,输入:
sudo gedit /etc/modprobe.d/blacklist.conf
此时系统自动调出文本编辑器gedit,并同时打开blacklist.conf,请在末尾加上以下两行,并保存:
blacklist nouveau
options nouveau modeset=0
然后执行以下命令应用更改:
sudo update-initramfs -u
重启电脑,验证是否禁用nouveau
lsmod | grep nouveau
没有信息返回说明已禁用成功
sudo apt-get --purge remove nvidia*
sudo init 3
注意: 执行命令后会自动进入shell,会要求重新登录了,登陆时小键盘可能被默认不可用,请使用键盘上方数字按键,我在这个地方卡了很多次,最后才发现
sudo apt-get install dkms
进入到放置nvidia驱动的文件夹,给驱动文件赋予执行权限:
sudo chmod a+x 驱动文件名.run
然后安装驱动
sudo ./驱动文件名.run --dkms
注:加上dkms参数代表允许ubuntu更新内核后,不用重装驱动。
安装过程中一路默认选择就行,当出现: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
重启后打开终端,输入以下命令,如无报错出现显卡相关信息则代表成果
nvidia-smi
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。