LinuxSir.cn,穿越时空的Linuxsir!

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

又是图形界面显示问题

[复制链接]
发表于 2008-3-20 02:15:43 | 显示全部楼层 |阅读模式
经过几天的折腾,终于弄好了arch,可以应付日常使用了。但是问题来了,笔记本接通电源,一切问题没有。今天想摆脱电线的束缚,使用电池。结果图形界面根本进不去...死机。
显卡是ati mobile 9600 pro,使用开源驱动+gnome。下面的是在使用电源时可以正常工作的xorg.conf。请大家帮忙诊断一下,谢谢!!!


Section "ServerLayout"
        Identifier     "X.org Configured"
        Screen      0  "Screen0" 0 0
        InputDevice    "Mouse0" "CorePointer"
        InputDevice    "Keyboard0" "CoreKeyboard"
        InputDevice    "Touchpad"  "SendCoreEvents"
        Option         "AIGLX" "true"
EndSection

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  "GLcore"
        Load  "dbe"
        Load  "dri"
        Load  "extmod"
        Load  "glx"
        Load  "record"
        Load  "xtrap"
        Load  "freetype"
        Load "synaptics"
#        Load  "drm"
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 "InputDevice"
        Identifier      "Touchpad"
       Driver          "synaptics"
       Option  "Device"        "/dev/input/mouse0"
        Option  "rotocol"      "auto-dev"
        Option  "LeftEdge"      "1700"
        Option  "RightEdge"     "5300"
        Option  "TopEdge"       "1700"
        Option  "BottomEdge"    "4200"
        Option  "FingerLow"     "25"
        Option  "FingerHigh"    "30"
        Option  "MaxTapTime"    "180"
        Option  "MaxTapMove"    "220"
        Option  "VertScrollDelta" "100"
        Option  "MinSpeed"      "0.06"
        Option  "MaxSpeed"      "0.12"
        Option  "AccelFactor" "0.0010"
        Option  "SHMConfig"     "on"
EndSection

Section "Monitor"
        Identifier   "Monitor0"
        VendorName   "Monitor Vendor"
        ModelName    "Monitor Model"
#        DisplaySize        339        212 #1280x800 96dpi
        DisplaySize        332        207        #1280x800 98dpi
#DisplaySize   330     206     # 1280x800  98dpi
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     "ShadowFB"                   # [<bool>]
        #Option     "DefaultRefresh"             # [<bool>]
        #Option     "ModeSetClearScreen"         # [<bool>]
        Identifier  "Card0"
        Driver      "radeon"
        VendorName  "ATI Technologies Inc"
        BoardName   "RV350 [Mobility Radeon 9600 M10]"
        BusID       "CI:1:0:0"
       
        Option      "XAANoOffscreenPixmaps" "true"
        Option      "DRI"     "true"
EndSection

Section "Screen"
        Identifier "Screen0"
        Device     "Card0"
        Monitor    "Monitor0"

        DefaultDepth  24
EndSection

Section "DRI"
        Group        0
        Mode        0666
EndSection

Section "Extensions"
        Option         "Composite"   "Enable"
EndSection
发表于 2008-3-20 10:10:49 | 显示全部楼层
电源和xorg.conf有什么太大关系?
看你的rc.conf是不是没有用autoloadmodule。
可能是笔记本的那几个模块没有加载,比如ac button battery etc.
回复 支持 反对

使用道具 举报

发表于 2008-3-20 10:38:09 | 显示全部楼层
顺便把我的xorg.conf给你,开源驱动可以通过增加选项来提升性能。
  1. Section "ServerLayout"
  2.         Identifier     "Default Layout"
  3.         Screen            0  "Screen0" 0 0
  4.         InputDevice    "Keyboard0" "CoreKeyboard"
  5.         InputDevice    "Mouse0" "CorePointer"
  6. #        InputDevice    "Synaptics Touchpad"
  7. EndSection
  8. Section "Files"
  9.         RgbPath      "/usr/share/X11/rgb"
  10.         ModulePath   "/usr/lib/xorg/modules"
  11.         FontPath     "/usr/share/fonts/misc"
  12.         FontPath     "/usr/share/fonts/TTF"
  13.         FontPath     "/usr/share/fonts/Type1"
  14. EndSection
  15. Section "Module"
  16.         Load  "glx"
  17.         Load  "extmod"
  18.         Load  "xtrap"
  19.         Load  "record"
  20.         Load  "GLcore"
  21.         Load  "dbe"
  22.         Load  "dri"
  23.         Load  "freetype"
  24. EndSection
  25. Section "InputDevice"
  26.         Identifier  "Keyboard0"
  27.         Driver      "kbd"
  28.         Option            "XkbModel" "pc104"
  29.         Option            "XkbLayout" "us"
  30. EndSection
  31. Section "InputDevice"
  32.         Identifier  "Mouse0"
  33.         Driver      "evdev"
  34.         Option            "SendCoreEvents"
  35.         Option            "Name" "Logitech USB-PS/2 Optical Mouse"
  36.         Option             "Device" "/dev/input/event7"
  37. EndSection
  38. Section "Monitor"
  39.         Identifier  "External VGA Monitor"
  40.         VendorName  "Samsung"
  41.         ModelName   "SyncMaster 931BW"
  42.         Option            "DPMS"
  43. EndSection
  44. Section "InputDevice"
  45.         Identifier  "Synaptics Touchpad"
  46.         Driver      "synaptics"
  47.         Option            "TouchpadOff" "1"
  48.         Option            "SendCoreEvents" "true"
  49.         Option            "Device" "/dev/psaux"
  50.         Option            "Protocol" "auto-dev"
  51.         Option            "HorizEdgeScroll" "0"
  52. EndSection
  53. Section "Device"
  54.         Identifier  "Card0"
  55.         Driver      "ati"
  56.         Option            "AccelMethod"        "EXA"
  57.         Option            "PanelSize"                "1440x900"
  58.         Option            "RenderAccel"        "on"
  59.         Option      "ColorTiling"        "on"
  60.         Option      "AccelDFS"                "on"
  61.         Option            "BackingStore"        "on"
  62. #        Option          "DynamicClocks"   "on"
  63.         BusID       "PCI:1:0:0"
  64.         VendorName  "ATI Technologies Inc"
  65.         BoardName   "M24 [Radeon Mobility X600]"
  66. EndSection
  67. Section "Screen"
  68.         Identifier "Screen0"
  69.         Device     "Card0"
  70.         Monitor    "External VGA Monitor"
  71.         DefaultDepth     24
  72.         SubSection "Display"
  73.                 Viewport   0 0
  74.                 Depth     24               
  75.         EndSubSection
  76. EndSection
复制代码
回复 支持 反对

使用道具 举报

发表于 2008-3-20 20:14:43 | 显示全部楼层
冲 zhuqin 的这个文件,我得 mark 下,家里有台 9550se 到时候可以用用,嘿嘿,thx
回复 支持 反对

使用道具 举报

 楼主| 发表于 2008-3-20 22:08:34 | 显示全部楼层
想到是xorg.conf的问题是因为我在字符界面是什么问题都没有...谢谢你的conf,我继续研究了...谢谢
回复 支持 反对

使用道具 举报

发表于 2008-3-20 23:13:13 | 显示全部楼层
zhuqin到底使用开源驱动还是官方驱动?

还有lz说很难进入图形界面,是如何个很难?会不会是因为你使用compiz的原因?

以前看ubuntu论坛上有人提这个问题,不过貌似没有什么结论,而且我也没遇到过这个问题,autoload模块倒是自动的
回复 支持 反对

使用道具 举报

 楼主| 发表于 2008-3-21 01:07:29 | 显示全部楼层
尝试过开和不开compiz,都是一样的...很难进入呢,就是偶尔可以进入gdm界面,但是即使进入gdm,只要一登录就死翘翘了...
回复 支持 反对

使用道具 举报

发表于 2008-3-21 01:19:16 | 显示全部楼层
@jarryson
你不会看我的xorg.conf阿?笨。
回复 支持 反对

使用道具 举报

发表于 2008-3-21 01:19:57 | 显示全部楼层
你最好还是看一下xorg.0.log
回复 支持 反对

使用道具 举报

发表于 2008-3-21 10:56:24 | 显示全部楼层
Post by zhuqin_83;1828995
@jarryson
你不会看我的xorg.conf阿?笨。


因为貌似你官方驱动也在用,怎么开源驱动也在用。。
回复 支持 反对

使用道具 举报

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

本版积分规则

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