MacPro上14.04的屏幕上出现exception

一位朋友给了我一个旧的MacPro并在其上安装了14.04。 在video上偶尔出现断断续续的问题 – 屏幕会冻结一两秒钟,然后恢复正常。 猜测它与XOrg有关,是否有任何建议如何排除故障?

使用XOrg开源驱动程序运行AMD和Nvidia显示卡:

02:00.0 VGA compatible controller [0300]: Advanced Micro Devices, Inc. [AMD/ATI] Juniper XT [Radeon HD 5770] [1002:68b8] (prog-if 00 [VGA controller]) Subsystem: Apple Inc. MacPro5,1 [Mac Pro 2.8GHz DDR3] [106b:00cf] Physical Slot: 1 Flags: bus master, fast devsel, latency 0, IRQ 58 Memory at 80000000 (64-bit, prefetchable) [size=512M] Memory at b3e00000 (64-bit, non-prefetchable) [size=128K] I/O ports at 3000 [size=256] Expansion ROM at b3e20000 [disabled] [size=128K] Capabilities:  Kernel driver in use: radeon 06:00.0 VGA compatible controller [0300]: NVIDIA Corporation GT218 [GeForce 210] [10de:0a65] (rev a2) (prog-if 00 [VGA controller]) Subsystem: Gigabyte Technology Co., Ltd Device [1458:34d5] Physical Slot: 3 Flags: bus master, fast devsel, latency 0, IRQ 59 Memory at b2000000 (32-bit, non-prefetchable) [size=16M] Memory at a0000000 (64-bit, prefetchable) [size=256M] Memory at b0000000 (64-bit, prefetchable) [size=32M] I/O ports at 2000 [size=128] Expansion ROM at b3000000 [disabled] [size=512K] Capabilities:  Kernel driver in use: nouveau 

系统:9.8 GiB RAM英特尔®至强(R)CPU E5462 @ 2.80GHz×8 Gallium 0.4 on AMD JUNIPER 64-bit

干杯

当我安装Ubuntu时,我的计算机上的nvidia驱动程序出现问题。

启动ubuntu并只运行终端,这样显卡就不用多做了。 或者,您可以按Ctrl + Alt + F1打开完整终端。

现在,您要做的是使用卸载nvidia驱动程序

sudo apt-get purge nvidia*

现在,安装包。 为此,您需要为内核安装软件包,可以通过键入来找到它们

 uname -r 

这将显示您的内核,例如。 -3.3.3-33generics。

现在输入“sudo apt-get install build-essential linux-source linux-headers”最后用你的内核,例如

 sudo apt-get install build-essential linux-source linux-headers-3.3.3-33-generic 

现在,一个伟大的团队有一个ppa,可以发布更稳定的回购。 安装使用:

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

安装驱动程序:

 sudo apt-get install nvidia-current 

现在您需要检查它是否已正确安装(14.04似乎没有这么做)

 lsmod | grep nvidia 

如果没有任何反应,您需要手动安装

 sudo depmod -a 

负载吧

 sudo modprobe nvidia_current 

现在你可以重新开始了

 sudo reboot 

希望这可以帮助