在 Dell 4600m precision 上配置 AMD Raedon 6700m。Ubuntu 12.10

在 Dell 4600m precision 上配置 AMD Raedon 6700m。Ubuntu 12.10

由于我的显卡问题,我使用 Ubuntu 12.10 时遇到了噩梦。我有一台戴尔 precision 4600m 笔记本电脑,配有 AMD Raedon 6700m HD 显卡,可以在 Ubuntu 12.10 上运行。

最近,我想使用办公室里的两个相同的屏幕。首先,我使用了其中一个,然后出现了与分辨率相关的错误。我将 xorg.conf 修改为更大的虚拟分辨率。它起作用了(我在“系统设置”中使用了显示管理器)。另一方面,我无法使用第二个(使用 HDMI)。

从“软件源”中,我将驱动程序修改为开源驱动程序,三个屏幕都运行正常。一段时间后,我注意到,有时我不得不强制重启我的电脑,因为它在启动时卡在黑屏上(在 Windows 和 Ubuntu 之间选择后)。我这样做了很多次。在互联网上进行了一些研究后,我决定安装 Catalyst 驱动程序,从此开始了整个战争!

现在的问题是,我只能使用两个屏幕(如果我尝试使用第三个屏幕,会出现错误“无法设置 CRTC 148 的配置”)。即使 Catalyst 工具允许我设置 3 个屏幕,当我重新启动时(每次我在 Catalyst 控制中心修改配置时都需要重新启动),我无法通过“显示管理器”设置它们。

另一个问题是,当我将其中一个屏幕与笔记本电脑屏幕一起使用时,其中一个屏幕的半个屏幕被禁用,我无法用鼠标触及它。

我的配置:

Ubuntu 12.10。Catalyst 驱动程序打包版本:9.00.11-120920a-147436C-ATI。两个相同的屏幕分辨率:1280 × 1024。笔记本电脑屏幕分辨率:1366 × 768。

这是我的 xorg.conf:

Section "ServerLayout"
    Identifier     "aticonfig Layout"
    Screen      0  "aticonfig-Screen[0]-0" 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   "0-LVDS"
    Option      "VendorName" "ATI Proprietary Driver"
    Option      "ModelName" "Generic Autodetecting Monitor"
    Option      "DPMS" "true"
    Option      "TargetRefresh" "60"
    Option      "Position" "2560 0"
    Option      "Rotate" "normal"
    Option      "Disable" "false"
    Option      "PreferredMode" "1366x768"
EndSection

Section "Monitor"
    Identifier   "0-DFP9"
    Option      "VendorName" "ATI Proprietary Driver"
    Option      "ModelName" "Generic Autodetecting Monitor"
    Option      "DPMS" "true"
    Option      "TargetRefresh" "60"
    Option      "Position" "1280 0"
    Option      "Rotate" "normal"
    Option      "Disable" "false"
    Option      "PreferredMode" "1280x1024"
EndSection

Section "Monitor"
    Identifier   "0-CRT1"
    Option      "VendorName" "ATI Proprietary Driver"
    Option      "ModelName" "Generic Autodetecting Monitor"
    Option      "DPMS" "true"
    Option      "PreferredMode" "1280x1024"
    Option      "TargetRefresh" "60"
    Option      "Position" "0 0"
    Option      "Rotate" "normal"
    Option      "Disable" "false"
EndSection

Section "Device"
    Identifier  "aticonfig-Device[0]-0"
    Driver      "fglrx"
    Option      "Monitor-LVDS" "0-LVDS"
    Option      "Monitor-DFP9" "0-DFP9"
    Option      "Monitor-CRT1" "0-CRT1"
    BusID       "PCI:1:0:0"
EndSection

Section "Screen"
    Identifier "aticonfig-Screen[0]-0"
    Device     "aticonfig-Device[0]-0"
    DefaultDepth     24
    SubSection "Display"
        Viewport   0 0
        Virtual   3926 1366
        Depth     24
    EndSubSection
EndSection

谢谢您的帮助 :)

相关内容