众所周知,在GNU / Linux上的双监视器设置非常有趣!在摆弄我的xorg.conf几天后,我设法到达了一个点,我可以通过启动以下步骤获得我想要的东西(彼此相邻的两个屏幕,可从一个屏幕拖动到另一个屏幕的窗口) X,然后手动调用:
xrandr --output CRT2 --right-of DFP2
我使用RandR 1.3是因为Xinerama无法在我的设置中使用(并且似乎也已经过时了)。
根据该网站,我应该可以通过xorg.conf静态地实现相同的效果-但是,我似乎无法使其正常工作。
我为ATI卡GNOME 2.32.1使用了fglrx驱动程序,这是我的xorg.conf:
Section "ServerFlags"
Option "RandR" "on"
EndSection
Section "Device"
Identifier "Device"
Driver "fglrx"
BusID "PCI:1:0:0"
Option "Monitor-DFP2" "Monitor0"
Option "Monitor-CRT2" "Monitor1"
EndSection
Section "Monitor"
Identifier "Monitor0"
EndSection
Section "Monitor"
Identifier "Monitor1"
Option "RightOf" "Monitor0"
EndSection
Section "Screen"
Identifier "Screen"
Device "Device"
Monitor "Monitor0"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "1920x1080"
Virtual 3840 1080
EndSubSection
EndSection
对我来说,这看起来很像上述网站上推荐的设置,但是,我将在两台显示器上获得相同的图像。同样,我可以稍后致电xrandr以达到所需的效果。
有什么想法可以修复我的xorg.conf吗?
aticonfig
生成一个xorg.conf,它基本上显示单个Desktop的克隆。