LinuxSir.cn,穿越时空的Linuxsir!

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

昨晚弄了一通宵也没有弄好,差点儿还用不了X了……应该是刷新的问题

[复制链接]
发表于 2007-12-16 00:48:47 | 显示全部楼层 |阅读模式
Thinkpad R60i 0657的本本。
主板i945GM,集成的显卡是GMA950的。
现在装的是intel的驱动,已经把i810的给卸载掉了,还是这样。
DDC出了问题,直接看不了LCD的刷新率。

问题就是:看页面的时候,一滚动,页面就会一直闪。看什么都是这样,不动没事,一动就闪──应该就是刷新率的问题吧……

下面一个帖子帖出我的xorg.conf
 楼主| 发表于 2007-12-16 00:50:29 | 显示全部楼层
  1. Section "Files"
  2. EndSection

  3. Section "InputDevice"
  4.         Identifier        "Generic Keyboard"
  5.         Driver                "kbd"
  6.         Option                "CoreKeyboard"
  7.         Option                "XkbRules"        "xorg"
  8.         Option                "XkbModel"        "pc105"
  9.         Option                "XkbLayout"        "us"
  10. EndSection

  11. Section "InputDevice"
  12.         Identifier        "Configured Mouse"
  13.         Driver                "mouse"
  14.         Option                "CorePointer"
  15.         Option                "Device"                "/dev/input/mice"
  16.         Option                "Protocol"                "ImPS/2"
  17.         Option                "ZAxisMapping"                "4 5"
  18.         Option                "Emulate3Buttons"        "true"
  19.         Option          "EmulateWheel"          "on"
  20.         Option          "EmulateWheelButton"    "2"
  21. EndSection

  22. Section "InputDevice"
  23.         Identifier        "Synaptics Touchpad"
  24.         Driver                "synaptics"
  25.         Option                "SendCoreEvents"        "true"
  26.         Option                "Device"                "/dev/psaux"
  27.         Option                "Protocol"                "auto-dev"
  28.         Option                "HorizEdgeScroll"        "0"
  29. EndSection

  30. Section "InputDevice"
  31.         Driver                "wacom"
  32.         Identifier        "stylus"
  33.         Option                "Device"        "/dev/input/wacom"
  34.         Option                "Type"                "stylus"
  35.         Option                "ForceDevice"        "ISDV4"                # Tablet PC ONLY
  36. EndSection

  37. Section "InputDevice"
  38.         Driver                "wacom"
  39.         Identifier        "eraser"
  40.         Option                "Device"        "/dev/input/wacom"
  41.         Option                "Type"                "eraser"
  42.         Option                "ForceDevice"        "ISDV4"                # Tablet PC ONLY
  43. EndSection

  44. Section "InputDevice"
  45.         Driver                "wacom"
  46.         Identifier        "cursor"
  47.         Option                "Device"        "/dev/input/wacom"
  48.         Option                "Type"                "cursor"
  49.         Option                "ForceDevice"        "ISDV4"                # Tablet PC ONLY
  50. EndSection

  51. Section "Device"
  52.         Identifier        "Intel Corporation Mobile 945GM/GMS, 943/940GML Express Integrated Graphics Controller"
  53.         Driver                "intel"
  54.         BusID                "PCI:0:2:0"
  55. EndSection

  56. Section "Monitor"
  57.         Identifier        "通用显示器"
  58.         Option                "DPMS"
  59.         HorizSync    31-101   
  60.         VertRefresh   60-160
  61. EndSection

  62. Section "Screen"
  63.         Identifier        "Default Screen"
  64.         Device                "Intel Corporation Mobile 945GM/GMS, 943/940GML Express Integrated Graphics Controller"
  65.         Monitor                "通用显示器"
  66.         DefaultDepth        24
  67.         SubSection "Display"
  68.                 Modes                "1024x768" "720x400" "640x480"
  69.         EndSubSection
  70. EndSection

  71. Section "ServerLayout"
  72.         Identifier        "Default Layout"
  73.         Screen                "Default Screen"
  74.         InputDevice        "Generic Keyboard"
  75.         InputDevice        "Configured Mouse"

  76. # Uncomment if you have a wacom tablet
  77. #        InputDevice     "stylus"        "SendCoreEvents"
  78. #        InputDevice     "cursor"        "SendCoreEvents"
  79. #        InputDevice     "eraser"        "SendCoreEvents"
  80.         InputDevice        "Synaptics Touchpad"
  81. EndSection
复制代码


基本上就是用xserver-xorg设置的,没有怎么改。
最开始安装的时候没有什么问题,那个时候还是用的i810的驱动,弄了一段时间compiz就出问题了,compiz全卸载了也没有用。
也换过i810的驱动用,但是竟然用不了1024×768的分辨了……
也没有liveCD来弄,本身是用U盘加grub4DOS安装的。
不知道直接在X下面用ISO,能不能当liveCD用,用来修复xorg.conf。

麻烦给看看,谢谢了~
回复 支持 反对

使用道具 举报

发表于 2007-12-17 12:43:02 | 显示全部楼层
我也是啊。后来直接把fedora7中的弄过来覆盖了,接着就只能进gnome安全模式了(这个时候滚动时页面也不闪了)。接着一不小心重新装了一次ubuntu就好了。
ps:同一张盘同一个电脑装,我总是装的会有不一样的现象,郁闷。关于这个问题我也贴出来问了,如果有人回答我也贴过来给你看看。
回复 支持 反对

使用道具 举报

发表于 2007-12-17 13:06:31 | 显示全部楼层
我修复xorg.conf的方法是在安全模式下 X -configure重新生成一个xorg.conf.new,按提示操作测试没问题后直接覆盖/etc下的。
回复 支持 反对

使用道具 举报

 楼主| 发表于 2007-12-17 17:16:17 | 显示全部楼层
楼上的意思没有太明白。
X -configure是一个什么命令呀?
还是就是sudo dpkg-reconfigure xserver-xorg?
应该用哪个安全模式呢?
麻烦了!
回复 支持 反对

使用道具 举报

 楼主| 发表于 2007-12-17 17:53:52 | 显示全部楼层
我X -configure老是会
  1. Fatal server error:
  2. Server is already active for display 0
  3.         If this server is no longer running, remove /tmp/.X0-lock
  4.         and start again.
复制代码
不太明白是什么意思……
回复 支持 反对

使用道具 举报

发表于 2007-12-19 18:52:59 | 显示全部楼层
这段话是说,你的X在运行中。可以先pkill gdm。
安全模式就是指单用户模式。
回复 支持 反对

使用道具 举报

 楼主| 发表于 2007-12-19 20:39:21 | 显示全部楼层
找了一张liveCD,直接运行了,再cp了那个xorg.conf出来,在鼠标下面加了两行其他都没有动(小红帽中键有用)──在live的状态下面没有闪的情况,回到本机上面还是有闪的问题……
xorg.conf证明是没有问题的,在live状态下面都没有问题,但是一样的xorg.conf在机器上面有问题……所以说应该不是xorg.conf的问题了。

麻烦再帮忙想想──不太想重装,配置还是光了老大劲儿了……就是一个firefox的配置也比较花时间的……导出配置也觉得太麻烦……
回复 支持 反对

使用道具 举报

发表于 2007-12-19 21:10:40 | 显示全部楼层
我的意思是,在Grub里选择recovery mode,然后在命令行下X -configure重新生成一个xorg.conf.new,按提示操作测试(系统在生成配置后会有相应提示教你怎么测试),确认没问题后,直接覆盖/etc下的。
回复 支持 反对

使用道具 举报

 楼主| 发表于 2007-12-20 18:04:09 | 显示全部楼层
我直接找了重装了了事……
还真就是内核不能和我的LCD通信造成的。

和xorg.conf好像没有什么关系的说……我cp了LiveCD的xorg.conf也一样没有用──也不知道我是去把什么地方给改了……
回复 支持 反对

使用道具 举报

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

本版积分规则

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