Chinaunix首页 | 论坛 | 博客
  • 博客访问: 323132
  • 博文数量: 61
  • 博客积分: 1400
  • 博客等级: 上尉
  • 技术积分: 789
  • 用 户 组: 普通用户
  • 注册时间: 2009-08-05 22:48
文章分类
文章存档

2012年(1)

2011年(2)

2010年(22)

2009年(36)

我的朋友

分类: LINUX

2010-07-31 15:22:14

这个问题应该是由于从8.04升级到8.10带来的问题。。。升级完后的第一次开机就出现这种情况了,从网上找了下修正的办法,如下:

在登录界面的时候按Alt + F1进入命令行界面,
打开/etc/X11/xorg.conf添加下面的红色字部分:

# xorg.conf (X.Org X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the xorg.conf manual page.
# (Type "man xorg.conf" at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
#   sudo dpkg-reconfigure -phigh xserver-xorg

Section "InputDevice"
    Identifier    "Generic Keyboard"
    Driver        "kbd"
    Option        "XkbRules"    "xorg"
    Option        "XkbModel"    "pc105"
    Option        "XkbLayout"    "us"
EndSection

Section "InputDevice"
    Identifier    "Configured Mouse"
    Driver        "mouse"
    Option        "CorePointer"
EndSection

Section "Device"
    Identifier    "Configured Video Device"
EndSection

Section "Monitor"
    Identifier    "Configured Monitor"
EndSection

Section "Screen"
    Identifier    "Default Screen"
    Monitor        "Configured Monitor"
    Device        "Configured Video Device"
EndSection

Section "ServerLayout"
    Identifier    "Default Layout"
    Inputdevice "Generic Keyboard"
    Inputdevice "Configured Mouse"
    Screen        "Default Screen"

    EndSection

按照上面这个文件的内容我的键盘和鼠标是正常工作的,如果有其他配件在开机的时候不能正常工作的话应该也可以看看这个文件。
阅读(8577) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~