我已将 Xorg 配置为使用 radeon 驱动程序,并运行连接到 Radeon HD 5670 卡的两个显示器。它工作正常。
但是,每次 Xorg 重新启动时,它都会以 1024x768 模式显示显示器镜像然后我必须使用xrandr
(或 KDE 的 GUI)手动设置 1600x1200 模式(这是我的显示器的原始分辨率)并相互补充而不是镜像。
我怎样才能让 Xorg 服务器自动进入该模式?"ServerLayout"
我的部分xorg.conf
内容如下:
Section "ServerLayout"
Identifier "X.org Configured"
Screen 0 "Screen0" 0 0
InputDevice "Mouse0" "CorePointer"
InputDevice "Keyboard0" "CoreKeyboard"
Option "XINERAMA"
EndSection
这"Device"
:
Section "Device"
Option "DRI" "2"
Identifier "Card0"
Driver "radeon"
VendorName "Advanced Micro Devices [AMD] nee ATI"
BoardName "Redwood [Radeon HD 5670]"
BusID "PCI:7:0:0"
EndSection
还有"Screen"
:
Section "Screen"
Identifier "Screen0"
Device "Card0"
Monitor "Monitor0"
DefaultDepth 24
...
SubSection "Display"
Viewport 0 0
Depth 24
Modes "1600x1200"
EndSubSection
EndSection