崩溃问题。怀疑是 Nvidia 驱动程序

崩溃问题。怀疑是 Nvidia 驱动程序

经过一番折腾,我终于激活了专有的 nvidia 驱动程序。选择

xorg:nvidia_current

我的尝试似乎成功了,但现在 Ubuntu 在一两分钟后就会冻结,并且无法进入故障安全图形模式。尝试时会显示以下内容:

xorg-server 2:1.11.4-0ubuntu10.11 (for technical support please see www.ubuntu.com/support)
Current  version of pixman 0.24.4
    before reporting problems, check http://wiki.x.org 
    to make sure that you have the latest version
Markers: (--) probed, (**) from config file, (==) default setting, 
    (++) from command line, (!!) notice, (II) informational, 
    (WW) warning, (EE) error, (NI) not implimented, (??) unknown.
(++) Log file: "/var/log/xorg.failsafe.log", Time Sat Feb 9 11:37:46 2013
(++) Using config file: "/etc/x11/xorg.conf.failsafe"
(==) Using system config directory "/usr/share/x11/xorg.conf.d
vesa: Ignoring devide with a bound kernel driver

Fatal server error:
No screens found

Please consult the X.org Foundation support
      at http://wiki.x.org

 for help.
Please also check "/var/log/Xorg.failsafe.log" for additional information

ddxSigGiveUo: Closing log
Server terminated with error (1) Closing log file.

现在我已经浏览过 x.Org 网站,但没有看到该错误的解释,或者如何修复它。

由于 Ubuntu 崩溃得如此之快,我无法及时打开日志文件查看内容,而且我仍然不够熟悉基于文本的文件系统,无法查找和打开日志和配置文件来查看它们的内容。

我是否需要卸载 nvidia_drivers,然后重新安装另一套驱动程序?我该怎么做?如果有帮助的话,我的笔记本电脑上的图形芯片组是 nVidia 6100 GO,所以几乎不是新硬件。或者可能是我一直在尝试摆弄博通驱动程序?

无论我做了什么,我都让 ubuntu 几乎无法使用,所以真的很需要这方面的帮助。

您还需要哪些其他信息来提供帮助?

答案1

我的 NVIDIA 显卡 (GTX 650 ti) 也出现了问题。请尝试以下操作:

  • 转到控制台并按 Ctrl+Alt+F1

  • 卸载驱动程序

sudo apt-get purge nvidia*

  • 安装适用于您的内核的软件包

sudo apt-get install build-essential linux-source linux-headers-3.5.0-23-generic(这是我的内核,你可以uname -r在终端中输入

  • 一个很棒的 PPA 是由那些家伙。这些比官方存储库更稳定、更可靠。使用以下命令添加它们并进行更新:

sudo add-apt-repository ppa:ubuntu-x-swat/x-updates&&sudo apt-get update

  • 安装驱动程序

sudo apt-get install nvidia-current

  • 检查你的驱动程序是否安装正确

lsmod | grep nvidia

  • 如果没有,那么您必须手动激活它:

sudo depmod -a

  • 加载

sudo modprobe nvidia_current

  • 重新开始

希望它对你有用!

相关内容