Gentoo fglrx不允许虚拟屏幕足够大


2

fglrx在此处使用并尝试设置双显示器设置。内容如下xrandr

Screen 0: minimum 320 x 200, current 1400 x 1050, maximum 1600 x 1600

所以,你已经知道这个了吧?我要做的就是在中调整Virtual屏幕大小xorg.conf。但是我有,这是整个文件:

Section "ServerLayout"
    Identifier     "aticonfig Layout"
    Screen      0  "virtual screen" 0 0
EndSection

Section "Monitor"
    Identifier   "Monitor."
    Option      "DPMS" "true"
EndSection

Section "Device"
    Identifier  "hd6450"
    Driver      "fglrx"
    BusID       "PCI:1:0:0"
    Option      "mtrr"          "no"
    Option      "no_dri"        "no"
    Option      "no_accel"      "no"
EndSection

Section "Screen"
    Identifier "virtual screen"
    Device     "hd6450"
    SubSection "Display"
        Virtual   3600 1080
    EndSubSection
EndSection

从来看Xorg.0.log,分辨率无声地降至1600x1600,这还不够。如果将“虚拟大小”设置为,则2048 2048可以使显示器的原始分辨率为,1680x1050但不能使用第二个显示器:

~ % xrandr --output CRT1 --left-of DFP2
xrandr: screen cannot be larger than 2048x2048 (desired size 3360x1050)

那么该怎么办?我尝试过fglrx版本11.11和11.8。奇怪的是,amdcccle不允许我编辑任何设置。所有输入均被禁止编辑。感谢您的关注。

Answers:


2

您可以添加卡型号吗?我刚刚在测试机上进行了测试,它肯定会接受:

    Virtual   4096 4096

您可以添加“ xrandr”的输出吗?这是我的(HD5850,09:00.0 VGA兼容控制器:Advanced Micro Devices [AMD]和ATI Cypress LE [Radeon HD 5800 Series])

Screen 0: minimum 320 x 200, current 2048 x 1152, maximum 4096 x 4096
DFP1 disconnected (normal left inverted right x axis y axis)
DFP2 disconnected (normal left inverted right x axis y axis)
DFP3 disconnected (normal left inverted right x axis y axis)
DFP4 connected 2048x1152+0+0 (normal left inverted right x axis y axis) 510mm x 287mm
   2048x1152      59.9*+
   1920x1080      59.9  
   1680x1050      60.0  
   1400x1050      60.0  
   1600x900       60.0  
   1360x1024      60.0  
   1280x1024      60.0  
   1440x900       59.9  
   1280x960       60.0  
   1280x800       59.8  
   1280x768       59.8  
   1280x720       59.8  
   1024x768       60.0  
   800x600        60.3     56.2  
   640x480        59.9  
CRT1 disconnected (normal left inverted right x axis y axis)
CRT2 disconnected (normal left inverted right x axis y axis)

见评论。


1
而已。宽度与高度之间的比例显然必须在一定范围内。1:1总是可以的。:)我不知道为什么我有一个很好的工作Virtual在一年前的“3060 1680”的大小约(我最后一次ATI),但现在我不能3360 1080设置
souser12345

1

对于fglrx,并非每个数字都可用于“虚拟”指令。不知道确切的策略是什么,但是“ 3600 1080”将不起作用。尝试“ 3600 1200”。如果不起作用,也尝试“ 3600 3600”,然后尝试“ 3600 1800”。不必担心数字太多,xrandr实际上会使用较小的区域,但是由于某些原因,驾驶员希望“舍入”数字。


谢谢。我们在@qdot的答案中解决了这个问题。看到评论了:)
souser12345 2012年
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.