|
|
我的电脑是780G的主板,板载ati hd3200显卡,19寸宽屏液晶,用arch+xfce,装的驱动是catalyst 8.8,没有装compiz
一切都还好,但是mplayer有问题,如果用xv模式(也就是硬件加速)来播放,有时候会卡,而且卡的时候鼠标也动不了,播视频常常会出错崩溃掉,不知道问题出在哪里,无奈只好用x11模式,但是这样看高清就不行了。
之所以没有装compiz也是因为装compiz之后X常常会卡,就算只有一个空空的桌面也会卡,也就是鼠标不动了,或是滚轮不走了,像mplayer里面一样。
我的X是7.3的,没有开testing源,曾经想用开源驱动来着,但是不知道是不是因为开源6.8的驱动不支持我的显卡,把Device里的Driver改成radeon或是ati总是进不了X。不知道是驱动的问题还是X配置的问题,参考了一些网站上的配置,还是不管用,不知道是不是有什么Option没写,或是有什么Module没加载。下面是我的xorg.conf,求助达人。
Section "Files"
RgbPath "/usr/share/X11/rgb"
ModulePath "/usr/lib/xorg/modules"
FontPath "/usr/share/fonts/misc"
FontPath "/usr/share/fonts/100dpi:unscaled"
FontPath "/usr/share/fonts/75dpi:unscaled"
FontPath "/usr/share/fonts/TTF"
FontPath "/usr/share/fonts/Type1"
EndSection
Section "Module"
Load "extmod"
Load "xtrap"
Load "record"
Load "dbe"
Load "dri"
Load "freetype"
EndSection
Section "InputDevice"
Identifier "Keyboard0"
Driver "kbd"
EndSection
Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
Option " rotocol" "auto"
Option "Device" "/dev/input/mice"
Option "ZAxisMapping" "4 5 6 7"
EndSection
#下面是显示器和显卡的部分
Section "Monitor"
Identifier "aticonfig-Monitor[0]-0"
Option "VendorName" "ATI Proprietary Driver"
Option "ModelName" "Generic Autodetecting Monitor"
Option "DPMS" "true"
EndSection
Section "Device"
Identifier "aticonfig-Device[0]-0"
Driver "fglrx"
BusID " CI:1:5:0"
Option "BackingStore" "on"
Option "VideoOverlay" "on"
Option "OpenGLOverlay" "off"
EndSection
Section "Screen"
Identifier "aticonfig-Screen[0]-0"
Device "aticonfig-Device[0]-0"
Monitor "aticonfig-Monitor[0]-0"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 24
EndSubSection
EndSection
Section "ServerLayout"
Identifier "X.org Configured"
Screen 0 "aticonfig-Screen[0]-0" 0 0
InputDevice "Mouse0" "CorePointer"
InputDevice "Keyboard0" "CoreKeyboard"
EndSection |
|