设为首页
收藏本站
用户名
Email
自动登录
找回密码
密码
登录
注册
快捷导航
平台
Portal
论坛
BBS
文库
项目
群组
Group
我的博客
Space
搜索
搜索
热搜:
shell
linux
mysql
本版
用户
LinuxSir.cn,穿越时空的Linuxsir!
»
论坛
›
Linux 发行版讨论区 —— LinuxSir.cn
›
Archlinux讨论区
›
帮我看看这个xorg.conf有什么问题
返回列表
查看:
1037
|
回复:
2
帮我看看这个xorg.conf有什么问题
[复制链接]
狱卒
狱卒
当前离线
积分
1689
IP卡
狗仔卡
发表于 2007-3-19 12:51:26
|
显示全部楼层
|
阅读模式
每次退出gnome的时候我点了注销按钮就停在那个画面不动了,而且启动beryl之后不管怎么设置都没有窗口标题栏和边框。
我的显卡是GeForce4 MX 440 with AGP8X,安装的驱动程序是nvidia-96xx。记得上一次没问题,重装之后把xorg.conf直接cp过来就出现这样的问题了。
Section "ServerLayout"
Identifier "Layout0"
Screen 0 "Screen0" 0 0
InputDevice "Keyboard0" "CoreKeyboard"
InputDevice "Mouse0" "CorePointer"
EndSection
Section "Files"
ModulePath "/usr/lib/xorg/modules"
EndSection
Section "Module"
Load "dbe"
Load "extmod"
Load "fbdevhw"
Load "glx"
Load "record"
Load "freetype"
Load "type1"
Load "GLCore"
Load "dri"
EndSection
Section "ServerFlags"
Option "Xinerama" "0"
EndSection
Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "ImPS/2"
Option "Device" "/dev/psaux"
#Option "Device" "/dev/input/mice"
Option "Emulate3Buttons" "yes"
Option "ZAxisMapping" "4 5"
EndSection
Section "InputDevice"
Identifier "Keyboard0"
Driver "kbd"
Option "XkbModel" "pc105"
Option "XkbLayout" "us"
EndSection
Section "Monitor"
Identifier "Monitor0"
VendorName "Samsung"
ModelName "Samsung SyncMaster 753DF(X)/703DF(X)/783DF(X)/CD173A(T)"
DisplaySize 321 241
### Comment all HorizSync and VertSync values to use DDC:
HorizSync 30.0 - 71.0
VertRefresh 50.0 - 160.0
Option "dpms"
EndSection
Section "Device"
Identifier "Videocard0"
Driver "nvidia"
VendorName "NVIDIA Corporation"
BoardName "GeForce4 MX 440 with AGP8X"
Option "NoLogo"
Option "TripleBuffer" "True"
Option "AllowGLXWithComposite" "True"
Option "RenderAccel" "True"
Option "AddARGBGLXVisuals" "Ture"
#Option "DisableGLXRootClipping" "True"
EndSection
Section "Extensions"
Option "Composite" "Enable"
EndSection
Section "Screen"
Identifier "Screen0"
Device "Videocard0"
Monitor "Monitor0"
DefaultDepth 24
Option "metamodes" "1024x768_85 +0+0; 1024x768 +0+0; 800x600 +0+0; 640x480 +0+0"
SubSection "Display"
Viewport 0 0
Depth 16
Modes "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 24
Modes "1024x768" "800x600" "640x480"
EndSubSection
EndSection
复制代码
一直提示下面的错误:
beryl: Couldn't bind redirected window 0x1c0006a to texture
beryl: No GLXFBConfig for depth 32
beryl: Couldn't bind redirected window 0x1c0006a to texture
beryl: No GLXFBConfig for depth 32
beryl: Couldn't bind redirected window 0x1c0006a to texture
beryl: No GLXFBConfig for depth 32
beryl: Couldn't bind redirected window 0x1c0006a to texture
beryl: No GLXFBConfig for depth 32
beryl: Couldn't bind redirected window 0x1c0006a to texture
beryl: No GLXFBConfig for depth 32
beryl: Couldn't bind redirected window 0x1c0006a to texture
beryl: No GLXFBConfig for depth 32
beryl: Couldn't bind redirected window 0x1c0006a to texture
beryl: No GLXFBConfig for depth 32
beryl: Couldn't bind redirected window 0x1c0006a to texture
beryl: No GLXFBConfig for depth 32
复制代码
回复
使用道具
举报
提升卡
置顶卡
沉默卡
喧嚣卡
变色卡
显身卡
軒轅.子
軒轅.子
当前离线
积分
550
IP卡
狗仔卡
发表于 2007-3-19 16:56:56
|
显示全部楼层
Load "GLCore" 注釋掉
這個和 glx沖突
Load "dri" 也注釋掉 nvidia卡不需要這個
我是和你一樣的顯卡 GF4 440... Xgl+beryl
嫌麻煩 可以copy我的...
Section "Device"
Identifier "Card0"
Driver "nvidia"
Option "VertRefresh" "60" #刷新率 我的是LCD 所以強制60
Option "NVagp" "2"
Option "RenderAccel" "True"
Option "TripleBuffer" "True"
Option "AllowGLXWithComposite" "True"
Option "AddARGBGLXVisuals" "True"
Option "DisableGLXRootClipping" "True"
VendorName "All"
BoardName "All"
EndSection
复制代码
Section "Extensions"
Option "Composite" "Enable"
EndSection
复制代码
Section "Module"
Load "ddc" # ddc probing of monitor
Load "dbe"
# Load "dri"
Load "extmod"
Load "glx"
Load "bitmap" # bitmap-fonts
# Load "type1"
Load "freetype"
Load "record"
EndSection
复制代码
那個錯誤提示 好像是mesa gl庫的問題
試試 export LD_LIBRARY_PATH=/opt/mesa-xgl/lib #我裝了mesa-glx-git
回复
支持
反对
使用道具
举报
显身卡
狱卒
狱卒
当前离线
积分
1689
IP卡
狗仔卡
楼主
|
发表于 2007-3-20 05:09:55
|
显示全部楼层
果然,把这几项注释掉就好了,非常感谢,终于搞定了。。。
#Load "GLCore"
#Load "dri"
#Option "RenderAccel" "True"
复制代码
回复
支持
反对
使用道具
举报
显身卡
返回列表
高级模式
B
Color
Image
Link
Quote
Code
Smilies
您需要登录后才可以回帖
登录
|
注册
本版积分规则
发表回复
回帖后跳转到最后一页
Copyright © 2002-2023
LinuxSir.cn
(http://www.linuxsir.cn/) 版权所有 All Rights Reserved.
Powered by
RedflagLinux!
技术支持:
中科红旗
|
京ICP备19024520号
快速回复
返回顶部
返回列表