如果同样的问题已经有人问过,我很抱歉,我检查了几个,但报告的问题不同或解决方案不起作用。
因此,我已经在配备 Intel 和 ATI 7670 显卡的笔记本电脑 DELL 5520 上成功安装了 FGLRX 驱动程序。不得不安装最新的测试版,因为稳定版无法正常工作并显示黑屏。因此,现在它在 Unity 和 Quake Live 中似乎运行良好(没有安装任何其他游戏或基准测试)。我只注意到图形存在一些小问题,可能通过一些调整就可以解决(我相信如此)。但是,当我插入第二个显示器时,问题就出现了。它被正确检测到,分辨率正确,我可以移动窗口等等,但是每次图片更新时它都会疯狂地闪烁。我找到的解决方案之一是运行xrandr --output VGA1 --auto --left-of LVDS1 --output VGA1 --auto --scale 1.0001x1.0001
。之后它真的停止闪烁,但显示比例变得不正确(我在第二个显示器上看到了窗口的一部分,而实际上整个窗口都放在了第一个显示器上)。也amdcccle
没有显示配置部分。
我的 xorg.conf 是由 aticonfig 生成的:
Section "ServerLayout"
Identifier "aticonfig Layout"
Screen 0 "aticonfig-Screen[0]-0" 0 0
EndSection
Section "Module"
EndSection
Section "Monitor"
Identifier "aticonfig-Monitor[0]-0"
Option "VendorName" "ATI Proprietary Driver"
Option "ModelName" "Generic Autodetecting Monitor"
Option "DPMS" "true"
EndSection
Section "Device"
Identifier "aticonfig-Device[0]-0"
Driver "fglrx"
BusID "PCI:1:0:0"
EndSection
Section "Screen"
Identifier "aticonfig-Screen[0]-0"
Device "aticonfig-Device[0]-0"
Monitor "aticonfig-Monitor[0]-0"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 24
EndSubSection
EndSection
答案1
xorg.conf 现在在 Ubuntu 14.10 中已经过时了,而且我正在运行没有它的催化剂驱动程序。
我的双屏也闪烁,我希望可以通过以下方法修复它:
xrandr --output DFP10 --primary
xrandr --output DFP9 --same-as DFP10
仍在试验看看是否能解决问题。