ATI Radeon X1200 系列(RS690M)图形驱动程序问题

ATI Radeon X1200 系列(RS690M)图形驱动程序问题

可能重复:
开源 ATI 驱动程序不工作

在全新的 Ubuntu 11.10 中,ATI Radeon X1200 系列 (RS690M) 的驱动程序似乎已损坏。即使移动单个窗口,它也几乎不动。升级前,11.04 中的驱动程序运行良好。我们什么时候可以期待它再次运行?

答案1

我的 Toshiba Equium P200D 也遇到过同样的问题,它配备了 RS690 radeon X1200 芯片组,现在我使用标准 radeon 驱动程序就可以运行,3D 和其它一切都没有问题。

radeon-kms.conf为了解决这个问题,我通过将文件添加到目录中来调整 radeon 驱动程序设置/etc/modprobe.d。只需使用以下条目创建上述文件:

options radeon noaccel=0
options radeon exavsync=0
options radeon colortiling=1
options radeon exapixmaps=1
options radeon enablepageflip=1

希望这对其他人有帮助。

答案2

我在 eMachine D620 (x1250, RS690M 芯片组) 上运行 10.10 时也一直在研究这个问题。我使用的是 xorg-edgers-radeon ppa (http://ppa.launchpad.net/xorg-edgers/radeon/ubuntu) 中的 radeon 驱动程序。

从 Thomas 的工作开始,我找到了一个基本可行的解决方案。关键推动因素似乎是 vsync_mode。

第一个有效的测试是使用命令行运行 glxgears vsync_mode=0 glxgears。结果从 ~10 FPS 上升到 ~150 FPS。(这仍然不是很好,但变化很大。)为了使此更改永久生效,我随后运行了 driconf 并将选项“与垂直刷新同步”设置为“从不同步...”。注销并重新登录使此更改生效并解决了我 90% 的问题。

我还将 Thomas Wake 的更改应用到了我的 /etc/X11/xorg.conf 文件中。现在它看起来是这样的

Section "Device"
        Identifier      "Configured Video Device"
        Driver   "radeon"
        Option  "DRI" "on"              #on is the default in recent radeonhd versions
        Option  "AccelMethod" "EXA"     #this is the default in recent radeonhd versions
#!used  Option  "EAXVSync"      "off"
        Option  "ColorTiling"   "on"
#!used  Option  "AGPMode"       "8"
#!used  Option  "AGPFastWrites" "on"
        Option  "EXAPixmaps"    "on"
        Option  "AccelDFS"      "on"
        Option  "RenderAccel"   "on"
#!used  Option  "DRI2"          "on"
        # from another source
        Option  "NoAccel"       "off"
#!used  Option  "EnablePageFlips"       "on"
EndSection

Section "Monitor"
        Identifier      "Configured Monitor"
EndSection

Section "Screen" 
        Identifier      "Default Screen"
        Monitor         "Configured Monitor"
        Device          "CYonfigured Video Device"
EndSection

以这些行开头的#!used选项虽然未使用过,但是之前版本中的其他人推荐使用这些选项。

答案3

是的,确实如此。最新的催化剂无法识别视频硬件,该催化剂适用于 11.10,非专有驱动程序没有很多功能 + 由于视频挂起,计算机无法从睡眠状态恢复

相关内容