MacPro 14.04 上的屏幕卡顿

MacPro 14.04 上的屏幕卡顿

一位朋友给了我一台旧的 MacPro,并在上面安装了 14.04。视频偶尔会出现卡顿问题 - 屏幕冻结一两秒,然后恢复正常。猜测这与 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: <access denied>
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: <access denied>
Kernel driver in use: nouveau

系统:9.8 GiB RAM Intel® Xeon(R) CPU E5462 @ 2.80GHz × 8 Gallium 0.4,AMD JUNIPER 64 位

干杯

答案1

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

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

现在,你需要使用以下命令卸载 nvidia 驱动程序

sudo apt-get purge nvidia*

现在,安装软件包。为此,您需要安装内核的软件包,可以通过输入以下内容找到

uname -r

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

现在输入“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 发布了更稳定的 repo。使用以下命令安装:

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

希望这可以帮助

相关内容