LinuxSir.cn,穿越时空的Linuxsir!

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

退出x后,终端字体变灰怎么办?

[复制链接]
发表于 2009-8-7 14:46:03 | 显示全部楼层 |阅读模式
任何一种xwindow都一样,而且每次logout之后字体的灰度还不同,在x下时间越长退出后终端字体越黑,ctrl+alt+f2 切换终端也是同样的效果,直至黑屏。

我的thinkpad r60 ati1300 安装12.2 和 13 rc2 都出现这个问题。 而且终端下, 彩色的企鹅图标也很模糊。

13 用的mesa7 , 支持ati显卡。

这应该是哪里的问题呢,

请高手们帮忙!
 楼主| 发表于 2009-8-7 15:04:03 | 显示全部楼层
自己顶一下, 另外附加一个 linuxquestions 下关于这个问题的讨论, 我还是不太懂, 而且这个帖子也没有给出完美的解决方法 。 请高手帮忙~

http://www.linuxquestions.org/qu ... ckware-12.0-572836/
回复 支持 反对

使用道具 举报

发表于 2009-8-7 19:22:11 | 显示全部楼层
昨天升级到current之后,我的VirtualBox(3.0.2-49928-Linux_x86)只要一打开,整个屏幕都变成灰色,但其他窗口里的程序都是正常颜色,按快捷键截屏看到的缩略图也是正常颜色。后来我装一个最近版的VirtualBox(.0.4-50677-Linux_x86)就没问题了
btw, 我的是T60 /ATI X1400显卡,xorg.conf里使用的是atiradeonhd

希望能有所帮助: )
回复 支持 反对

使用道具 举报

 楼主| 发表于 2009-8-11 19:27:10 | 显示全部楼层
折腾了一大圈, 瞎猫碰上死耗子,现在算是解决了。

系统会自己生成一个 /etc/X11/xorg.conf-vesa文件,虽然我用xorgsetup重新配置x,系统会生成xorg.conf,但前述文件仍旧保留。  这时候问题没得到解决。结果, 我不小心把旧配置文件给删了, 问题才消失。。。

真是ft啊,,, 找了好些e文的帖子看, 不过都是针对老系统的, 改来改去不得要领。 最后竟然是这样解决的。。。。

多谢ls 的回帖, 哪位能解释一下我这误打误撞是怎么搞成的呢?
回复 支持 反对

使用道具 举报

发表于 2009-8-11 19:38:28 | 显示全部楼层
估计运行xorgsetup后当前用户的配置文件没变.
cd ~
rm -R *
reboot
这样应该也行的,没有试过,只是猜测.
回复 支持 反对

使用道具 举报

 楼主| 发表于 2009-8-11 19:53:44 | 显示全部楼层
新问题, 原本fgl_glxgears结果是1300多的, 现在不能执行这个命令了, 难道3d模块没有加载?看来还是内核的显卡模块有冲突了,这问题肯定还是没有解决好。。。

xorgsetup时并没有配置显卡的内容

现在的xorg.conf 是这样的:
Section "ServerLayout"
        Identifier     "X.org Configured"
        Screen      0  "Screen0" 0 0
        InputDevice    "Mouse0" "CorePointer"
        InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
        ModulePath   "/usr/lib64/xorg/modules"
        FontPath     "/usr/share/fonts/local"
        FontPath     "/usr/share/fonts/TTF"
        FontPath     "/usr/share/fonts/OTF"
        FontPath     "/usr/share/fonts/Type1"
        FontPath     "/usr/share/fonts/misc"
        FontPath     "/usr/share/fonts/CID"
        FontPath     "/usr/share/fonts/75dpi/:unscaled"
        FontPath     "/usr/share/fonts/100dpi/:unscaled"
        FontPath     "/usr/share/fonts/75dpi"
        FontPath     "/usr/share/fonts/100dpi"
        FontPath     "/usr/share/fonts/cyrillic"
EndSection

Section "Module"
        Load  "dri2"
        Load  "extmod"
        Load  "dri"
        Load  "glx"
        Load  "dbe"
EndSection

Section "InputDevice"
        Identifier  "Keyboard0"
        Driver      "kbd"
        Option       "XkbModel"  "pc101"
        Option       "XkbLayout"  "us"
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   "Monitor0"
        VendorName   "Monitor Vendor"
        ModelName    "Monitor Model"
EndSection

Section "Device"
        ### Available Driver options are:-
        ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
        ### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
        ### [arg]: arg optional
        #Option     "NoAccel"                    # [<bool>]
        #Option     "AccelMethod"                # [<str>]
        #Option     "offscreensize"              # [<str>]
        #Option     "SWcursor"                   # [<bool>]
        #Option     "ignoreconnector"            # [<str>]
        #Option     "forcereduced"               # [<bool>]
        #Option     "forcedpi"                   # <i>
        #Option     "useconfiguredmonitor"         # [<bool>]
        #Option     "HPD"                        # <str>
        #Option     "NoRandr"                    # [<bool>]
        #Option     "RROutputOrder"              # [<str>]
        #Option     "DRI"                        # [<bool>]
        #Option     "TVMode"                     # [<str>]
        #Option     "ScaleType"                  # [<str>]
        #Option     "UseAtomBIOS"                # [<bool>]
        #Option     "AtomBIOS"                   # [<str>]
        #Option     "UnverifiedFeatures"         # [<bool>]
        #Option     "Audio"                      # [<bool>]
        #Option     "HDMI"                       # [<str>]
        #Option     "COHERENT"                   # [<str>]
        Identifier  "Card0"
        Driver      "radeonhd"
        VendorName  "Unknown Vendor"
        BoardName   "Unknown Board"
        BusID       "CI:1:0:0"
EndSection

Section "Screen"
        Identifier "Screen0"
        Device     "Card0"
        Monitor    "Monitor0"
        DefaultDepth 24
        SubSection "Display"
                Viewport   0 0
                Depth     1
        EndSubSection
        SubSection "Display"
                Viewport   0 0
                Depth     4
        EndSubSection
        SubSection "Display"
                Viewport   0 0
                Depth     8
        EndSubSection
        SubSection "Display"
                Viewport   0 0
                Depth     15
        EndSubSection
        SubSection "Display"
                Viewport   0 0
                Depth     16
        EndSubSection
        SubSection "Display"
                Viewport   0 0
                Depth     24
        EndSubSection
EndSection
回复 支持 反对

使用道具 举报

 楼主| 发表于 2009-8-11 19:58:27 | 显示全部楼层
这次登录的 xorg.0.log

X.Org X Server 1.6.2
Release Date: 2009-7-7
X Protocol Version 11, Revision 0
Build Operating System: Slackware 13.0 Slackware Linux Project
Current Operating System: Linux darkstar 2.6.29.6 #2 SMP Mon Jul 13 21:13:11 CDT 2009 x86_64
Build Date: 16 July 2009  05:29:10PM

        Before reporting problems, check http://wiki.x.org
        to make sure that you have the latest version.
Markers: (--) probed, (**) from config file, (==) default setting,
        (++) from command line, (!!) notice, (II) informational,
        (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/Xorg.0.log", Time: Tue Aug 11 18:52:38 2009
(==) Using config file: "/etc/X11/xorg.conf"
(==) ServerLayout "X.org Configured"
(**) |-->Screen "Screen0" (0)
(**) |   |-->Monitor "Monitor0"
(**) |   |-->Device "Card0"
(**) |-->Input Device "Mouse0"
(**) |-->Input Device "Keyboard0"
(==) Automatically adding devices
(==) Automatically enabling devices
(WW) The directory "/usr/share/fonts/local" does not exist.
        Entry deleted from font path.
(WW) The directory "/usr/share/fonts/CID" does not exist.
        Entry deleted from font path.
(WW) The directory "/usr/share/fonts/local" does not exist.
        Entry deleted from font path.
(WW) The directory "/usr/share/fonts/CID" does not exist.
        Entry deleted from font path.
(**) FontPath set to:
        /usr/share/fonts/TTF,
        /usr/share/fonts/OTF,
        /usr/share/fonts/Type1,
        /usr/share/fonts/misc,
        /usr/share/fonts/75dpi/:unscaled,
        /usr/share/fonts/100dpi/:unscaled,
        /usr/share/fonts/75dpi,
        /usr/share/fonts/100dpi,
        /usr/share/fonts/cyrillic,
        /usr/share/fonts/TTF,
        /usr/share/fonts/OTF,
        /usr/share/fonts/Type1,
        /usr/share/fonts/misc,
        /usr/share/fonts/75dpi/:unscaled,
        /usr/share/fonts/100dpi/:unscaled,
        /usr/share/fonts/75dpi,
        /usr/share/fonts/100dpi,
        /usr/share/fonts/cyrillic,
        built-ins
(**) ModulePath set to "/usr/lib64/xorg/modules"
(WW) AllowEmptyInput is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
(WW) Disabling Mouse0
(WW) Disabling Keyboard0
(II) Loader magic: 0x34e0
(II) Module ABI versions:
        X.Org ANSI C Emulation: 0.4
        X.Org Video Driver: 5.0
        X.Org XInput driver : 4.0
        X.Org Server Extension : 2.0
(II) Loader running on linux
(--) using VT number 7

(--) PCI:*(0:1:0:0) 1002:7149:17aa:2005 rev 0, Mem @ 0xd8000000/134217728, 0xee000000/65536, I/O @ 0x00002000/256, BIOS @ 0x????????/131072
(II) Open ACPI successful (/var/run/acpid.socket)
(II) System resource ranges:
        [0] -1        0        0xffffffff - 0xffffffff (0x1) MX
        [1] -1        0        0x000f0000 - 0x000fffff (0x10000) MX
        [2] -1        0        0x000c0000 - 0x000effff (0x30000) MX
        [3] -1        0        0x00000000 - 0x0009ffff (0xa0000) MX
        [4] -1        0        0x0000ffff - 0x0000ffff (0x1) IX
        [5] -1        0        0x00000000 - 0x00000000 (0x1) IX
(II) "extmod" will be loaded. This was enabled by default and also specified in the config file.
(II) "dbe" will be loaded. This was enabled by default and also specified in the config file.
(II) "glx" will be loaded. This was enabled by default and also specified in the config file.
(II) "dri" will be loaded. This was enabled by default and also specified in the config file.
(II) "dri2" will be loaded. This was enabled by default and also specified in the config file.
(II) LoadModule: "dri2"
(II) Loading /usr/lib64/xorg/modules/extensions//libdri2.so
(II) Module dri2: vendor="X.Org Foundation"
        compiled for 1.6.2, module version = 1.1.0
        ABI class: X.Org Server Extension, version 2.0
(II) Loading extension DRI2
(II) LoadModule: "extmod"
(II) Loading /usr/lib64/xorg/modules/extensions//libextmod.so
(II) Module extmod: vendor="X.Org Foundation"
        compiled for 1.6.2, module version = 1.0.0
        Module class: X.Org Server Extension
        ABI class: X.Org Server Extension, version 2.0
(II) Loading extension MIT-SCREEN-SAVER
(II) Loading extension XFree86-VidModeExtension
(II) Loading extension XFree86-DGA
(II) Loading extension DPMS
(II) Loading extension XVideo
(II) Loading extension XVideo-MotionCompensation
(II) Loading extension X-Resource
(II) LoadModule: "dri"
(II) Loading /usr/lib64/xorg/modules/extensions//libdri.so
(II) Module dri: vendor="X.Org Foundation"
        compiled for 1.6.2, module version = 1.0.0
        ABI class: X.Org Server Extension, version 2.0
(II) Loading extension XFree86-DRI
(II) LoadModule: "glx"
(II) Loading /usr/lib64/xorg/modules/extensions//libglx.so
(II) Module glx: vendor="X.Org Foundation"
        compiled for 1.6.2, module version = 1.0.0
        ABI class: X.Org Server Extension, version 2.0
(==) AIGLX enabled
(II) Loading extension GLX
(II) LoadModule: "dbe"
(II) Loading /usr/lib64/xorg/modules/extensions//libdbe.so
(II) Module dbe: vendor="X.Org Foundation"
        compiled for 1.6.2, module version = 1.0.0
        Module class: X.Org Server Extension
        ABI class: X.Org Server Extension, version 2.0
(II) Loading extension DOUBLE-BUFFER
(II) LoadModule: "radeonhd"
(II) Loading /usr/lib64/xorg/modules/drivers//radeonhd_drv.so
(II) Module radeonhd: vendor="AMD GPG"
        compiled for 1.6.1, module version = 1.2.5
        Module class: X.Org Video Driver
        ABI class: X.Org Video Driver, version 5.0
(II) RADEONHD: X driver for the following AMD GPG (ATI) graphics devices:
        RV505 : Radeon X1550, X1550 64bit.
        RV515 : Radeon X1300, X1550, X1600; FireGL V3300, V3350.
        RV516 : Radeon X1300, X1550, X1550 64-bit, X1600; FireMV 2250.
        R520  : Radeon X1800; FireGL V5300, V7200, V7300, V7350.
        RV530 : Radeon X1300 XT, X1600, X1600 Pro, X1650; FireGL V3400, V5200.
        RV535 : Radeon X1300, X1650.
        RV550 : Radeon X2300 HD.
        RV560 : Radeon X1650.
        RV570 : Radeon X1950, X1950 GT; FireGL V7400.
        R580  : Radeon X1900, X1950; AMD Stream Processor.
        R600  : Radeon HD 2900 GT/Pro/XT; FireGL V7600/V8600/V8650.
        RV610 : Radeon HD 2350, HD 2400 Pro/XT, HD 2400 Pro AGP; FireGL V4000.
        RV620 : Radeon HD 3450, HD 3470.
        RV630 : Radeon HD 2600 LE/Pro/XT, HD 2600 Pro/XT AGP; Gemini RV630;
                FireGL V3600/V5600.
        RV635 : Radeon HD 3650, HD 3670.
        RV670 : Radeon HD 3690, 3850, HD 3870, FireGL V7700, FireStream 9170.
        R680  : Radeon HD 3870 X2.
        M52   : Mobility Radeon X1300.
        M54   : Mobility Radeon X1400; M54-GL.
        M56   : Mobility Radeon X1600; Mobility FireGL V5200.
        M58   : Mobility Radeon X1800, X1800 XT; Mobility FireGL V7100, V7200.
        M62   : Mobility Radeon X1350.
        M64   : Mobility Radeon X1450, X2300.
        M66   : Mobility Radeon X1700, X1700 XT; FireGL V5250.
        M68   : Mobility Radeon X1900.
        M71   : Mobility Radeon HD 2300.
        M72   : Mobility Radeon HD 2400; Radeon E2400.
        M74   : Mobility Radeon HD 2400 XT.
        M76   : Mobility Radeon HD 2600;
                (Gemini ATI) Mobility Radeon HD 2600 XT.
        M82   : Mobility Radeon HD 3400.
        M86   : Mobility Radeon HD 3650, HD 3670, Mobility FireGL V5700.
        M88   : Mobility Radeon HD 3850, HD 3850 X2, HD 3870, HD3870 X2.
        RS600 : Radeon Xpress 1200, Xpress 1250.
        RS690 : Radeon X1200, X1250, X1270.
        RS740 : RS740, RS740M.
        RS780 : Radeon HD 3100/3200/3300 Series.
        RV770 : Radeon HD 4800 Series; Everest, K2, Denali ATI FirePro.
        R700  : Radeon R700.
        M98   : Radeon M98 Mobility.
        RV730 : Radeon HD4670, HD4650.
        M96   : Radeon M96 Mobility.
        RV710 : Radeon HD4570, HD4350.

(II) RADEONHD: version 1.2.5, built from dist of git branch master, commit cb54f48b

(II) Primary Device is: PCI 01@00:00:0
(II) resource ranges after xf86ClaimFixedResources() call:
        [0] -1        0        0xffffffff - 0xffffffff (0x1) MX
        [1] -1        0        0x000f0000 - 0x000fffff (0x10000) MX
        [2] -1        0        0x000c0000 - 0x000effff (0x30000) MX
        [3] -1        0        0x00000000 - 0x0009ffff (0xa0000) MX
        [4] -1        0        0x0000ffff - 0x0000ffff (0x1) IX
        [5] -1        0        0x00000000 - 0x00000000 (0x1) IX
(II) resource ranges after probing:
        [0] -1        0        0xffffffff - 0xffffffff (0x1) MX
        [1] -1        0        0x000f0000 - 0x000fffff (0x10000) MX
        [2] -1        0        0x000c0000 - 0x000effff (0x30000) MX
        [3] -1        0        0x00000000 - 0x0009ffff (0xa0000) MX
        [4] 0        0        0x000a0000 - 0x000affff (0x10000) MS
        [5] 0        0        0x000b0000 - 0x000b7fff (0x8000) MS
        [6] 0        0        0x000b8000 - 0x000bffff (0x8000) MS
        [7] -1        0        0x0000ffff - 0x0000ffff (0x1) IX
        [8] -1        0        0x00000000 - 0x00000000 (0x1) IX
        [9] 0        0        0x000003b0 - 0x000003bb (0xc) IS
        [10] 0        0        0x000003c0 - 0x000003df (0x20) IS
(II) Setting vga for screen 0.
(**) RADEONHD(0): Depth 24, (--) framebuffer bpp 32
(**) RADEONHD(0): Selected XAA 2D acceleration.
(--) RADEONHD(0): Detected an M52 on a Lenovo Thinkpad T60 (2008)
(II) RADEONHD(0): Mapped IO @ 0xee000000 to 0x7f03ecd91000 (size 0x00010000)
(II) RADEONHD(0): PCIE Card Detected
(II) RADEONHD(0): Getting BIOS copy from legacy VBIOS location
(II) RADEONHD(0): ATOM BIOS Rom:
        SubsystemVendorID: 0x17aa SubsystemID: 0x2006
        IOBaseAddress: 0x2000
        Filename:            
        BIOS Bootup Message:
M64CSP/M62CSP/M54CSP/M52CSP BIOS                                            

(II) RADEONHD(0): Analog TV Default Mode: 4294967040
(--) RADEONHD(0): VideoRAM: 65536 kByte
(II) RADEONHD(0): Framebuffer space used by Firmware (kb): 20
(II) RADEONHD(0): Start of VRAM area used by Firmware: 0x3ffb000
(II) RADEONHD(0): AtomBIOS requests 20kB of VRAM scratch space
(II) RADEONHD(0): AtomBIOS VRAM scratch base: 0x3ffb000
(II) RADEONHD(0): Default Engine Clock: 425000
(II) RADEONHD(0): Default Memory Clock: 352000
(II) RADEONHD(0): Maximum Pixel ClockPLL Frequency Output: 1100000
(II) RADEONHD(0): Minimum Pixel ClockPLL Frequency Output: 0
(II) RADEONHD(0): Maximum Pixel ClockPLL Frequency Input: 13500
(II) RADEONHD(0): Minimum Pixel ClockPLL Frequency Input: 1000
(II) RADEONHD(0): Maximum Pixel Clock: 400000
(II) RADEONHD(0): Reference Clock: 27000
(II) RADEONHD(0): Found libdri 5.4.0.
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 10, (OK)
drmOpenByBusid: Searching for BusID pci:0000:01:00.0
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 10, (OK)
drmOpenByBusid: drmOpenMinor returns 10
drmOpenByBusid: drmGetBusid reports pci:0000:01:00.0
(II) RADEONHD(0): Found libdrm 1.3.0.
(II) RADEONHD(0): Found radeon drm 1.29.0.
(II) Loading sub module "i2c"
(II) LoadModule: "i2c"
(II) Module "i2c" already built-in
(II) RADEONHD(0): Default Engine Clock: 425000
(II) RADEONHD(0): GPIO_I2C_Clk_Mask: 0x1f90
(II) RADEONHD(0): GPIO_I2C_Clk_Mask_Shift: 0x0
(II) RADEONHD(0): GPIO_I2C_Data_Mask: 0x1f90
(II) RADEONHD(0): GPIO_I2C_Data_Mask_Shift: 0x8
(II) RADEONHD(0): I2C bus "RHD I2C line 0" initialized.
(II) RADEONHD(0): GPIO_I2C_Clk_Mask: 0x1f94
(II) RADEONHD(0): GPIO_I2C_Clk_Mask_Shift: 0x0
(II) RADEONHD(0): GPIO_I2C_Data_Mask: 0x1f94
(II) RADEONHD(0): GPIO_I2C_Data_Mask_Shift: 0x8
(II) RADEONHD(0): I2C bus "RHD I2C line 1" initialized.
(II) RADEONHD(0): GPIO_I2C_Clk_Mask: 0x1f98
(II) RADEONHD(0): GPIO_I2C_Clk_Mask_Shift: 0x0
(II) RADEONHD(0): GPIO_I2C_Data_Mask: 0x1f98
(II) RADEONHD(0): GPIO_I2C_Data_Mask_Shift: 0x8
(II) RADEONHD(0): I2C bus "RHD I2C line 2" initialized.
(II) Loading sub module "ddc"
(II) LoadModule: "ddc"
(II) Module "ddc" already built-in
(II) RADEONHD(0): Detected VGA mode.
(II) RADEONHD(0): Minimum Pixel ClockPLL Frequency Output: 0
(II) RADEONHD(0): Maximum Pixel ClockPLL Frequency Output: 1100000
(II) RADEONHD(0): Maximum Pixel Clock: 400000
(II) RADEONHD(0): Reference Clock: 27000
(II) RADEONHD(0): FB: Allocated Cursor Image at offset 0x00000000 (size = 0x00004000)
(II) RADEONHD(0): FB: Allocated Cursor Image at offset 0x00004000 (size = 0x00004000)
(II) RADEONHD(0): Connector[0] {RHD_CONNECTOR_VGA, "VGA CRT1", RHD_DDC_0, RHD_HPD_NONE, { RHD_OUTPUT_DACA, RHD_OUTPUT_NONE } }
(II) RADEONHD(0): Connector[1] {RHD_CONNECTOR_PANEL, "ANEL LCD1", RHD_DDC_2, RHD_HPD_NONE, { RHD_OUTPUT_LVTMA, RHD_OUTPUT_NONE } }
(II) RADEONHD(0): Connector[2] {RHD_CONNECTOR_DVI, "DVI-I DFP1", RHD_DDC_1, RHD_HPD_0, { RHD_OUTPUT_TMDSA, RHD_OUTPUT_NONE } }
(--) RADEONHD(0): Attaching Output DAC A to Connector VGA 1
(II) RADEONHD(0): LVDS SEQ Dig onto DE: 40
(II) RADEONHD(0): LVDS SEQ DE to BL: 250
(II) RADEONHD(0): LVDS Off Delay: 170
(II) RADEONHD(0): LVDS Duallink: 0x0
(II) RADEONHD(0): LVDS 24Bit: 0x0
(II) RADEONHD(0): LVDS FPDI: 0x0
(II) RADEONHD(0): LVDS Temporal Dither : 0x1
(II) RADEONHD(0): LVDS Spatial Dither : 0x0
(II) RADEONHD(0): LVDS Grey Level: 0x2
(II) RADEONHD(0): AtomBIOS returned 2 Grey Levels
(--) RADEONHD(0): Detected a 18bit single link panel.
(--) RADEONHD(0): Attaching Output LVDS to Connector PANEL
(--) RADEONHD(0): Attaching Output TMDS A to Connector DVI-D 1
(II) RADEONHD(0): RandR: Adding RRoutput VGA_1 for Output DAC A
(II) RADEONHD(0): RandR: Adding RRoutput PANEL for Output LVDS
(II) RADEONHD(0): RandR: Adding RRoutput DVI-D_1 for Output TMDS A
(II) RADEONHD(0): Output VGA_1 using monitor section Monitor0
(II) RADEONHD(0): Output VGA_1 has no monitor section
(II) RADEONHD(0): Output PANEL has no monitor section
(II) RADEONHD(0): Output DVI-D_1 has no monitor section
(II) RADEONHD(0): I2C device "RHD I2C line 2:E-EDID segment register" registered at address 0x60.
(II) RADEONHD(0): I2C device "RHD I2C line 2:ddc2" registered at address 0xA0.
(II) RADEONHD(0): EDID data for LVDS Panel
(II) RADEONHD(0): Manufacturer: LEN  Model: 4020  Serial#: 0
(II) RADEONHD(0): Year: 2005  Week: 0
(II) RADEONHD(0): EDID Version: 1.3
(II) RADEONHD(0): Digital Display Input
(II) RADEONHD(0): Max Image Size [cm]: horiz.: 29  vert.: 21
(II) RADEONHD(0): Gamma: 2.20
(II) RADEONHD(0): DPMS capabilities: StandBy Suspend Off
(II) RADEONHD(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
(II) RADEONHD(0): First detailed timing is preferred mode
(II) RADEONHD(0): redX: 0.590 redY: 0.342   greenX: 0.319 greenY: 0.540
(II) RADEONHD(0): blueX: 0.152 blueY: 0.137   whiteX: 0.313 whiteY: 0.329
(II) RADEONHD(0): Manufacturer's mask: 0
(II) RADEONHD(0): Supported detailed timing:
(II) RADEONHD(0): clock: 65.0 MHz   Image Size:  286 x 214 mm
(II) RADEONHD(0): h_active: 1024  h_sync: 1048  h_sync_end 1184 h_blank_end 1344 h_border: 0
(II) RADEONHD(0): v_active: 768  v_sync: 771  v_sync_end 777 v_blanking: 806 v_border: 0
(II) RADEONHD(0): Supported detailed timing:
(II) RADEONHD(0): clock: 54.2 MHz   Image Size:  286 x 214 mm
(II) RADEONHD(0): h_active: 1024  h_sync: 1048  h_sync_end 1184 h_blank_end 1344 h_border: 0
(II) RADEONHD(0): v_active: 768  v_sync: 771  v_sync_end 777 v_blanking: 806 v_border: 0
(WW) RADEONHD(0): Unknown vendor-specific block f
(II) RADEONHD(0):  LTN141XA-L01
(II) RADEONHD(0): EDID (in hex):
(II) RADEONHD(0):         00ffffffffffff0030ae204000000000
(II) RADEONHD(0):         000f0103801d1578ea2d059757518a27
(II) RADEONHD(0):         23505400000001010101010101010101
(II) RADEONHD(0):         01010101010164190040410026301888
(II) RADEONHD(0):         36001ed6100000192815004041002630
(II) RADEONHD(0):         188836001ed6100000190000000f0061
(II) RADEONHD(0):         43326143280f01004ca35841000000fe
(II) RADEONHD(0):         004c544e31343158412d4c30310a0012
(II) RADEONHD(0): Found native mode: Modeline "1024x768"   65.00  1024 1048 1184 1344  768 771 777 806
(II) RADEONHD(0): Output VGA_1 disconnected
(II) RADEONHD(0): Output PANEL connected
(II) RADEONHD(0): Output DVI-D_1 disconnected
(II) RADEONHD(0): Using exact sizes for initial modes
(II) RADEONHD(0): Output PANEL using initial mode 1024x768
(II) RADEONHD(0): RandR 1.2 support enabled
(==) RADEONHD(0): RGB weight 888
(==) RADEONHD(0): Default visual is TrueColor
(==) RADEONHD(0): Using gamma correction (1.0, 1.0, 1.0)
(II) RADEONHD(0): Using 2560x2560 Framebuffer with 2560 pitch
(II) RADEONHD(0): FB: Allocated ScanoutBuffer at offset 0x00008000 (size = 0x01900000)
(==) RADEONHD(0): DPI set to (96, 96)
(II) Loading sub module "fb"
(II) LoadModule: "fb"
(II) Loading /usr/lib64/xorg/modules//libfb.so
(II) Module fb: vendor="X.Org Foundation"
        compiled for 1.6.2, module version = 1.0.0
        ABI class: X.Org ANSI C Emulation, version 0.4
(II) Loading sub module "ramdac"
(II) LoadModule: "ramdac"
(II) Module "ramdac" already built-in
(II) Loading sub module "xaa"
(II) LoadModule: "xaa"
(II) Loading /usr/lib64/xorg/modules//libxaa.so
(II) Module xaa: vendor="X.Org Foundation"
        compiled for 1.6.2, module version = 1.2.1
        ABI class: X.Org Video Driver, version 5.0
(II) RADEONHD(0): FB: Allocated Offscreen Buffer at offset 0x01908000 (size = 0x00666000)
(II) RADEONHD(0): FB: Allocated DRI Back Buffer at offset 0x01F6E000 (size = 0x01900000)
(EE) RADEONHD(0): FB: Failed allocating DRI Depth Buffer (25600 KB)
(EE) RADEONHD(0): DRI: Failed allocating buffers, disabling
(--) Depth 24 pixmap format is 32 bpp
(II) do I need RAC?  No, I don't.
(II) resource ranges after preInit:
        [0] -1        0        0xffffffff - 0xffffffff (0x1) MX
        [1] -1        0        0x000f0000 - 0x000fffff (0x10000) MX
        [2] -1        0        0x000c0000 - 0x000effff (0x30000) MX
        [3] -1        0        0x00000000 - 0x0009ffff (0xa0000) MX
        [4] 0        0        0x000a0000 - 0x000affff (0x10000) MS
        [5] 0        0        0x000b0000 - 0x000b7fff (0x8000) MS
        [6] 0        0        0x000b8000 - 0x000bffff (0x8000) MS
        [7] -1        0        0x0000ffff - 0x0000ffff (0x1) IX
        [8] -1        0        0x00000000 - 0x00000000 (0x1) IX
        [9] 0        0        0x000003b0 - 0x000003bb (0xc) IS
        [10] 0        0        0x000003c0 - 0x000003df (0x20) IS
(II) RADEONHD(0): Mapped IO @ 0xee000000 to 0x7f03ecd91000 (size 0x00010000)
(II) RADEONHD(0): Mapped FB @ 0xd8000000 to 0x7f03e4e75000 (size 0x04000000)
(II) RADEONHD(0): Using MMIO Command Submission for acceleration.
(II) RADEONHD(0): Using 655 scanlines of offscreen memory
(II) RADEONHD(0): Using XFree86 Acceleration Architecture (XAA)
        Screen to screen bit blits
        Solid filled rectangles
        8x8 mono pattern filled rectangles
        Indirect CPU to Screen color expansion
        Solid Lines
        Scanline Image Writes
        Setting up tile and stipple cache:
                32 128x128 slots
                17 256x256 slots
(==) RADEONHD(0): Backing store disabled
(==) RADEONHD(0): Silken mouse enabled
(II) RADEONHD(0): RandR 1.2 enabled, ignore the following RandR disabled message.
(II) RADEONHD(0): On Crtc 0 Setting 60.0 Hz Mode: Modeline "1024x768"   65.00  1024 1048 1184 1344  768 771 777 806
None
(II) RADEONHD(0): LVDSSetBacklight: trying to set BL_MOD_LEVEL to: 108
(II) RADEONHD(0): DPMS enabled
(II) RADEONHD(0): Xv: No Textured Video possible without the Command Processor.
(--) RandR disabled
(II) Setting vga for screen 0.
(II) Initializing built-in extension Generic Event Extension
(II) Initializing built-in extension SHAPE
(II) Initializing built-in extension MIT-SHM
(II) Initializing built-in extension XInputExtension
(II) Initializing built-in extension XTEST
(II) Initializing built-in extension BIG-REQUESTS
(II) Initializing built-in extension SYNC
(II) Initializing built-in extension XKEYBOARD
(II) Initializing built-in extension XC-MISC
(II) Initializing built-in extension XINERAMA
(II) Initializing built-in extension XFIXES
(II) Initializing built-in extension RENDER
(II) Initializing built-in extension RANDR
(II) Initializing built-in extension COMPOSITE
(II) Initializing built-in extension DAMAGE
(II) AIGLX: Screen 0 is not DRI2 capable
(II) AIGLX: Screen 0 is not DRI capable
(II) AIGLX: Loaded and initialized /usr/lib64/xorg/modules/dri/swrast_dri.so
(II) GLX: Initialized DRISWRAST GL provider for screen 0
(II) RADEONHD(0): Setting screen physical size to 286 x 214
(II) config/hal: Adding input device Macintosh mouse button emulation
(II) LoadModule: "evdev"
(II) Loading /usr/lib64/xorg/modules/input//evdev_drv.so
(II) Module evdev: vendor="X.Org Foundation"
        compiled for 1.6.1, module version = 2.2.2
        Module class: X.Org XInput Driver
        ABI class: X.Org XInput driver, version 4.0
(**) Macintosh mouse button emulation: always reports core events
(**) Macintosh mouse button emulation: Device: "/dev/input/event0"
(II) Macintosh mouse button emulation: Found 3 mouse buttons
(II) Macintosh mouse button emulation: Found x and y relative axes
(II) Macintosh mouse button emulation: Configuring as mouse
(**) Macintosh mouse button emulation: YAxisMapping: buttons 4 and 5
(**) Macintosh mouse button emulation: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
(II) XINPUT: Adding extended input device "Macintosh mouse button emulation" (type: MOUSE)
(**) Macintosh mouse button emulation: (accel) keeping acceleration scheme 1
(**) Macintosh mouse button emulation: (accel) filter chain progression: 2.00
(**) Macintosh mouse button emulation: (accel) filter stage 0: 20.00 ms
(**) Macintosh mouse button emulation: (accel) set acceleration profile 0
(II) config/hal: Adding input device TPPS/2 IBM TrackPoint
(**) TPPS/2 IBM TrackPoint: always reports core events
(**) TPPS/2 IBM TrackPoint: Device: "/dev/input/event7"
(II) TPPS/2 IBM TrackPoint: Found 3 mouse buttons
(II) TPPS/2 IBM TrackPoint: Found x and y relative axes
(II) TPPS/2 IBM TrackPoint: Configuring as mouse
(**) TPPS/2 IBM TrackPoint: YAxisMapping: buttons 4 and 5
(**) TPPS/2 IBM TrackPoint: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
(II) XINPUT: Adding extended input device "TPPS/2 IBM TrackPoint" (type: MOUSE)
(**) TPPS/2 IBM TrackPoint: (accel) keeping acceleration scheme 1
(**) TPPS/2 IBM TrackPoint: (accel) filter chain progression: 2.00
(**) TPPS/2 IBM TrackPoint: (accel) filter stage 0: 20.00 ms
(**) TPPS/2 IBM TrackPoint: (accel) set acceleration profile 0
(II) config/hal: Adding input device SynPS/2 Synaptics TouchPad
(II) LoadModule: "synaptics"
(II) Loading /usr/lib64/xorg/modules/input//synaptics_drv.so
(II) Module synaptics: vendor="X.Org Foundation"
        compiled for 1.6.1, module version = 1.1.2
        Module class: X.Org XInput Driver
        ABI class: X.Org XInput driver, version 4.0
(II) Synaptics touchpad driver version 1.1.2
(**) Option "Device" "/dev/input/event6"
(II) SynPS/2 Synaptics TouchPad: x-axis range 1472 - 5472
(II) SynPS/2 Synaptics TouchPad: y-axis range 1408 - 4448
(II) SynPS/2 Synaptics TouchPad: pressure range 0 - 255
(II) SynPS/2 Synaptics TouchPad: finger width range 0 - 0
(II) SynPS/2 Synaptics TouchPad: buttons: left right middle double triple
(--) SynPS/2 Synaptics TouchPad: touchpad found
(**) SynPS/2 Synaptics TouchPad: always reports core events
(II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD)
(**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
(**) SynPS/2 Synaptics TouchPad: (accel) filter chain progression: 2.00
(**) SynPS/2 Synaptics TouchPad: (accel) filter stage 0: 20.00 ms
(**) SynPS/2 Synaptics TouchPad: (accel) set acceleration profile 0
(--) SynPS/2 Synaptics TouchPad: touchpad found
(II) config/hal: Adding input device AT Translated Set 2 keyboard
(**) AT Translated Set 2 keyboard: always reports core events
(**) AT Translated Set 2 keyboard: Device: "/dev/input/event1"
(II) AT Translated Set 2 keyboard: Found keys
(II) AT Translated Set 2 keyboard: Configuring as keyboard
(II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD)
(**) Option "xkb_rules" "evdev"
(**) Option "xkb_model" "evdev"
(**) Option "xkb_layout" "us"
(**) Option "xkb_options" "terminate:ctrl_alt_bksp"
(II) config/hal: Adding input device Video Bus
(**) Video Bus: always reports core events
(**) Video Bus: Device: "/dev/input/event5"
(II) Video Bus: Found keys
(II) Video Bus: Configuring as keyboard
(II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD)
(**) Option "xkb_rules" "evdev"
(**) Option "xkb_model" "evdev"
(**) Option "xkb_layout" "us"
(**) Option "xkb_options" "terminate:ctrl_alt_bksp"
回复 支持 反对

使用道具 举报

 楼主| 发表于 2009-8-11 20:01:11 | 显示全部楼层
想开3d 该怎么搞呢?  到底该加载什么模块才对阿?
回复 支持 反对

使用道具 举报

 楼主| 发表于 2009-8-12 16:01:56 | 显示全部楼层
今天再次测试, 发现, 只要把显卡的driver 换成 ati 或者 radeon ,毛病就会出现, 但是这时候 glxgears 的得分都比较高, 大概1300多。 driver换成 radeonhd, 问题就消失了。 但是glxgears得分很低, 只有250左右, 而且不稳定。 甚至每次开x的时候屏幕都要闪几下。

如此看来是驱动的问题了。。  另外我想知道 dri 和dri2 是什么关系。它们会冲突吗?
回复 支持 反对

使用道具 举报

发表于 2009-8-13 10:47:33 | 显示全部楼层
我也有同样的问题,27 的内核,ati x1300,只改 driver 在我这边没有任何效果。我把 xorg.conf 重命名后用 xorgsetup 配置后,driver 为 radeonhd 了,不能启动 X;改为 ati/radeon 后,能启动但变灰的问题依旧。希望楼主能琢磨出真正原因。:D

似乎与色深有关,猜的。
回复 支持 反对

使用道具 举报

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

本版积分规则

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