红联Linux门户
Linux帮助

解决Ubuntu更新nVidia显卡驱动后黑屏问题

发布时间:2016-01-22 15:24:47来源:linux网站作者:zijingping

现在已经完全抛弃windows了,完全用ubuntu来干活了。不是windows不好,是中国的windows生态环境太差了,随便装个国产小软件会附带给用户装一堆垃圾的东西,什么各种毒霸,各种手机助手,各种输入法,稍微点错个什么按钮就装一堆的垃圾,到处都是陷阱,就连开源的SourceForge推出的FileZilla安装器,后台还偷偷自动下载Norton 360强制安装。用户还根本没得选择,所以干脆痛下决心,把Windows干掉,直接上ubuntu了,使用方法习惯了几天就好了,把eclipse也换成了IntelliJIDEA,感觉开发效率比用windows的时候还高不少,现在再看别人用windows觉得那玩意就是渣渣啊。除了网银还得虚拟机,别的真的没啥需要windows来做的。而且,说实话,在linux下用命令行解决问题比用界面解决快多了。


但是,又说但是了,Linux系统虽然很好,可显卡厂商对它支持并不好,我用了半年ubuntu,基本出问题都是在nVidia显卡上,Linus Torvalds曾经在大会上当众对英伟达竖中指,并说"Fuck you nVidia"。我的使用的感觉也是一样的。

官方linux版本驱动更新太慢,ppa的bumble bee里面有最新的驱动,但是不稳定。昨晚上就被搞黑屏了。笔记本是intel/nVidia双显卡,平时都是用intel集显,没啥大问题,昨晚下载安装了xorg-edgers的349驱动,然后选了一下nVidia显卡,结果直接启动黑屏了,怎么折腾都不行。百度上翻好几页基本都是建议重装系统。


然后还是上了谷歌,第一条就搜到想要的答案了。很快就解决了,适用于nVidia更新非官方显卡驱动后启动黑屏或花屏,整理方法如下,记录一下,省的以后忘了。

启动黑屏后可以按Ctrl-Alt-F1进入命令行界面。这个是基础知识,需连网。


进入cli模式后,sudo apt-get install ppa-purge:

sudo ppa-purge xorg-edgers

sudo apt-get purge nvidia-*


创建一个临时文件夹如 mkdir ~/tmp:

cp /etc/X11/xorg.conf* ~/tmp

sudo apt-get autoremove

sudo apt-get update

sudo apt-get upgrade

sudo reboot


重启后还是C+A+F1进命令行:

sudo apt-get install nvidia-331 nvidia-prime

sudo cp ~/tmp/xorg.conf.nvidia-xconfig-original /etc/X11/xorg.conf

sudo vi /etc/X11/xorg.conf


确保内容如下: 
Section "ServerLayout"
Identifier "layout"
Screen 0 "nvidia"
Inactive "intel"
EndSection

Section "Device"
Identifier "intel"
Driver "intel"
BusID "PCI:0@0:2:0"
Option "AccelMethod" "SNA"
EndSection

Section "Screen"
Identifier "intel"
Device "intel"
EndSection

Section "Device"
Identifier "nvidia"
Driver "nvidia"
BusID "PCI:1@0:0:0"
Option "ConstrainCursor" "off"
EndSection

Section "Screen"
Identifier "nvidia"
Device "nvidia"
Option "AllowEmptyInitialConfiguration" "on"
Option "IgnoreDisplayDevices" "CRT"
EndSection


最后重启,解决。最后启动完成可能会报错,这个用一下 dpkg-reconfigure nvidia-331 nvidia-331-uvm nvidia-settings 就可以了。再重启应该就没事了。


本文永久更新地址:http://www.linuxdiyf.com/linux/17561.html