我正在尝试通过利用连接到 AMD 卡的主显示器和连接到主板 VGA 插槽的辅助显示器来实现多显示器设置。计算机启动后,两个显示器都显示黑屏。只有当我为“Intel-gfx”指定英特尔驱动程序时才会发生这种情况,如果是其他名称,则什么也不会发生,但第二个屏幕当然是黑屏。
我在运行 Ubuntu 14.04 LTS X.Org X Server 1.15.1 的台式机上执行此操作,我不确定要在此处输入哪个 gfx 驱动程序版本。我忘了安装的是哪一个。主板:GA-Z87X-D3H Gfx 卡:AMD R9 290
这是我的 xorg.conf:
Section "ServerLayout"
Identifier "aticonfig Layout"
Screen 0 "aticonfig-Screen[0]-0" 0 0
Screen 1 "Intel-screen" LeftOf "aticonfig-Screen[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 "Monitor"
Identifier "Monitor1"
VendorName "Monitor Vendor"
ModelName "Monitor Model"
EndSection
Section "Device"
Identifier "aticonfig-Device[0]-0"
Driver "fglrx"
BusID "PCI:1:0:0"
EndSection
Section "Device"
Identifier "Intel-gfx"
Driver "intel"
BusID "PCI:0:2: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
Section "Screen"
Identifier "Intel-screen"
Device "Intel-gfx"
Monitor "Monitor1"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 24
EndSubSection
EndSection
这个链接是我从 /var/log/Xorg.0.log 得到的