LinuxSir.cn,穿越时空的Linuxsir!

 找回密码
 注册
搜索
热搜: shell linux mysql
查看: 1868|回复: 9

HoHo ATI X300 + AIGLX + beryl 成功 [已解决]

[复制链接]
发表于 2006-10-15 01:44:05 | 显示全部楼层 |阅读模式
on IBM Thinkpad T43
发帖庆贺一下。
发表于 2006-10-15 03:45:11 | 显示全部楼层
我还以为是R300系列的ATI显卡呢。
回复 支持 反对

使用道具 举报

发表于 2006-10-15 06:54:58 | 显示全部楼层
Post by blackwhite
我还以为是R300系列的ATI显卡呢。


X300是R300系列呀
回复 支持 反对

使用道具 举报

发表于 2006-10-15 09:04:04 | 显示全部楼层
楼主用的是什么驱动?? fglrx还是radeon??
回复 支持 反对

使用道具 举报

发表于 2006-10-15 09:57:37 | 显示全部楼层
必然是radeon
回复 支持 反对

使用道具 举报

 楼主| 发表于 2006-10-15 12:05:55 | 显示全部楼层
radeon
回复 支持 反对

使用道具 举报

发表于 2006-10-15 16:27:48 | 显示全部楼层
楼主可不可以贴一下xorg.conf

最好给一个简单得howto可以不可以,很让人羡慕俄。


分享成功经验。。。。。。。。。。。。。。。。。。。。。

我的是T42,但是显卡老了一些,9600 M10,所以想看看你的xorg.conf看看,

简单得howto,例如每一步做什么,不需要具体的命令,有指示牌就可以了。

谢谢。
回复 支持 反对

使用道具 举报

 楼主| 发表于 2006-10-15 18:19:51 | 显示全部楼层
现在 mesa-6.5.1 的 dri 部分装在了 /usr/lib/dri/ 目录下,而 x11-server 用的 dri 在 /usr/lib/xorg/modules/dri 。所以把 mesa 下的 r100 r200 r300 和 radeon 的 so 文件拷贝到  /usr/lib/xorg/modules/dri 目录下。开启3D加速。
然后就是配置 xorg.conf
  1. #File: xorg.conf
  2. Section "Module"
  3.         Load "dbe"
  4.         SubSection "extmod"
  5.                 Option "omit xfree86-dga"
  6.         EndSubSection
  7.         Load "type1"
  8.         Load "freetype"
  9.         Load "glx"
  10.         Load "dri"
  11. EndSection
  12. Section "Files"
  13.     FontPath   "/usr/share/fonts/misc"
  14.     FontPath   "/usr/share/fonts/75dpi"
  15. EndSection
  16. Section "ServerFlags"
  17. EndSection
  18. Section "InputDevice"
  19.     Identifier  "Generic Keyboard"
  20.     Driver      "kbd"
  21.     Option "XkbRules"   "xorg"
  22.     Option "XkbModel"   "pc105"
  23.     Option "XkbLayout"  "us"
  24. EndSection
  25. Section "InputDevice"
  26.     Identifier  "Universal Mouse"
  27.     Driver      "mouse"
  28.     Option "Protocol"    "IMPS/2"       # IntelliMouse PS/2
  29.     Option "Device"      "/dev/psaux"
  30.     Option "ZAxisMapping"   "4 5 6 7"
  31.     Option "Emulate3Buttons"
  32. EndSection
  33. Section "Monitor"
  34.     Identifier  "Generic LCD"
  35. EndSection
  36. Section "Device"
  37.         Identifier                                                      "Radeon"
  38.         Driver                                                          "radeon"
  39.         Option "DRI"                                            "true"
  40.         Option "RenderAccel"                            "true"
  41.         Option "AGPMode"                                        "8"
  42.         Option "EnablePageFlip"                         "true"
  43.         Option "XAANoOffscreenPixmaps"          "true"
  44.         # This two lines are needed to prevent fonts from being scrambled
  45.         Option "XaaNoScanlineImageWriteRect"
  46.         Option "XaaNoScanlineCPUToScreenColorExpandFill"
  47.         Option "AllowGLXWithcomposite"          "true"
  48. EndSection
  49. Section "Screen"
  50.         Identifier                                              "Radeon Screen"
  51.         Device                                                          "Radeon"
  52.         Monitor                                                         "Generic LCD"
  53.         DefaultDepth                                            16
  54.         Option "AddARGBGLXVisuals"                      "True"
  55.         Subsection "Display"
  56.                 Depth                                                   16
  57.                 Modes                                                   "1024x768"
  58.                 ViewPort                                                0 0
  59.                 EndSubsection
  60. EndSection
  61. Section "ServerLayout"
  62.         Identifier "Server Layout"
  63.         Screen "Radeon Screen"
  64.         InputDevice "Universal Mouse" "CorePointer"
  65.         InputDevice "Generic Keyboard" "CoreKeyboard"
  66.         Option "AIGLX"          "true"
  67. EndSection
  68. Section "dri"
  69.         Mode 0666
  70. EndSection
  71. Section "Extensions"
  72.         Option "Composite"                                      "Enable"
  73. EndSection
复制代码

再 emerge beryl ,启动 beryl-manager 就可以了。
回复 支持 反对

使用道具 举报

发表于 2006-10-29 11:13:11 | 显示全部楼层
你好,我也在IBM笔记本上装beryl,我的笔记本是ibm r52,显卡也是ATI x300,xorg 7.1.
首先,我启动终端,然后输入beryl&后可以进入beryl,但是屏幕都是白的,一般操作可以进行,如旋转桌面什么的,但是就是白屏.我切掉beryl后,看见报出这个错误:
Initiating splash
beryl: water: GL_ARB_fragment_program is missing
你知道是什么原因么?应该如何解决?谢谢!
我已经在这上面耗了很长时间了,希望楼主能帮助一下
回复 支持 反对

使用道具 举报

发表于 2006-10-29 16:52:08 | 显示全部楼层
Post by David_leeh
你好,我也在IBM笔记本上装beryl,我的笔记本是ibm r52,显卡也是ATI x300,xorg 7.1.
首先,我启动终端,然后输入beryl&后可以进入beryl,但是屏幕都是白的,一般操作可以进行,如旋转桌面什么的,但是就是白屏.我切掉beryl后,看见报出这个错误:
Initiating splash
beryl: water: GL_ARB_fragment_program is missing
你知道是什么原因么?应该如何解决?谢谢!
我已经在这上面耗了很长时间了,希望楼主能帮助一下


就是说开源驱动不支持GL_ARB_fragment_program
然后water效果无法开启.
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

快速回复 返回顶部 返回列表