我在设置我的机器以使用四显示器时遇到了问题。在 11.04 中一切都运行良好,但自从升级以来,我一直无法让配置正常工作。如果我使用与 11.04 中相同的 xorg.conf,我会在显示器上看到 4 个相同图像的克隆。不仅如此,如果我单击启动栏中的图标(例如 Firefox),X 会重新启动。让两个显示器工作很简单,如果我只需删除 xorg.conf,Ubuntu 就能检测到这两个显示器并正确设置它们。
我并不关心任何花哨的效果,但如果我能像以前一样使用四台显示器启动并运行系统,那就太好了。我没有使用 ati 驱动程序,只使用开源 radeon 驱动程序,因为我的一张卡不受较新的 ATI 驱动程序支持。我在系统上使用两张不同的 ATI 卡:
01:00.0 VGA compatible controller: ATI Technologies Inc RV516 [Radeon X1300/X1550 Series]
02:00.0 VGA compatible controller: ATI Technologies Inc Mobility Radeon HD 3600 Series
xorg.conf如下所示:
Section "Monitor"
Identifier "monitor1"
EndSection
Section "Monitor"
Identifier "monitor2"
EndSection
Section "Monitor"
Identifier "monitor3"
EndSection
Section "Monitor"
Identifier "monitor4"
EndSection
Section "Device"
Identifier "Card1"
Driver "radeon"
BusID "PCI:2:0:0"
Option "DRI" "off"
Screen 0
EndSection
Section "Device"
Identifier "Card1_2"
Driver "radeon"
BusID "PCI:2:0:0"
Option "DRI" "off"
Screen 1
EndSection
Section "Device"
Option "ZaphodHeads" "DVI-0"
Identifier "Card2"
Driver "radeon"
BusID "PCI:1:0:0"
Option "DRI" "off"
Screen 0
EndSection
Section "Device"
Option "ZaphodHeads" "VGA-0"
Identifier "Card2_2"
Driver "radeon"
BusID "PCI:1:0:0"
Option "DRI" "off"
Screen 1
Option "Rotate" "left"
EndSection
Section "Screen"
Identifier "left"
Device "Card1"
Monitor "monitor1"
EndSection
Section "Screen"
Identifier "middle"
Device "Card1_2"
Monitor "monitor2"
EndSection
Section "Screen"
Identifier "right"
Device "Card2"
Monitor "monitor3"
EndSection
Section "Screen"
Identifier "farright"
Device "Card2_2"
Monitor "monitor4"
EndSection
Section "ServerFlags"
Option "Xinerama" "True"
Option "AIGLX" "False"
EndSection
Section "ServerLayout"
Identifier "layout1"
Screen 0 "left" 0 0
Screen "middle" RightOf "left"
Screen "right" RightOf "middle"
Screen "farright" RightOf "right"
Option "Xinerama" "On"
EndSection
有人有什么建议吗?