红联Linux门户
Linux帮助
当前位置: 红联Linux门户 > Debian

debian下xserver启动 找不到鼠标问题

发布时间:2007-12-22 12:58:16来源:红联作者:kbopoeco
硬件平台:
cpu:p4 2.4
显卡:主板集成显卡i845G
00:02.0 VGA compatible controller: Intel Corporation 82845G/GL[Brookdale-G]/GE Chipset Integrated Graphics Device (rev 03)
鼠标:PS/2,光电问题描述:
安装过程如下:
干净的硬盘,debian3.1 stable光盘启动,选择linux26内核
装好之后配好apt源
首先升级到testing,apt-get dist-upgrade
然后开始装x,apt-get install xserver-xorg gnome
装完之后startx,可启动x。
在x里面再次进行一系列升级,都是一些无关痛痒的软件,例如firefox,mlterm,qterm,scim等。
ctrl+backspace退出x之后,startx无法进入x
报错信息如下:
(EE) xf86OpenSerial: Cannot open device /dev/input/mice
No such device.
Fatal: failed to initialize core devices

Mouse的配置块如下:
Section “InputDevice”
Identifier “Configured Mouse”
Driver “mouse”
Option “CorePointer”
Option “Device” “/dev/input/mice”
Option “Protocol” “ImPS/2″
Option “Emulate3Buttons” “true”
EndSection
鼠标设备 /dev/input/mice
但是在终端下cat /dev/input/mice,然后移动鼠标,终端上没有输出.
说明鼠标驱动没有加载上。

问题解决办法:
开始google搜索 “Cannot open device /dev/input/mice”
首先看中文站点,没有找到有用信息
然后开始看国外论坛,得到有用信息

尝试1.启动xserver的时候加参数跳过鼠标,没有鼠标也允许xserver启动。方法是在/etc/X11/xorg.conf中,加一个Section
Section “ServerFlags”
Option “AllowMouseOpenFail” “true”
EndSection
该方法可以进入x,但是鼠标不能动,因为没有驱动

尝试2.找到下面一段话
It seems that since Kernel-2.6, 3 modules have to bee load:
- psmouse
- input
- mousedev
And the new link for the PS/2 mouse is /dev/input/mice, but /dev/psaux still run for compatibility.

意思是kernel2.6之后,ps/2 设备是/dev/input/mice,这个国内论坛有人说的mice表示usb鼠标是不一样的。
另外,3个内核模块psmouse input 和mousedev必须都加载。

用lsmod查询系统,发现只有psmouse模块加载
再用modprobe -l 查询系统,发现input和mousedev模块都在/lib/module/`uname -r`/目录中,只是没有设置开机加载
调用modconf,选择input和mousedev模块

reboot系统,startx,鼠标找到。
文章评论

共有 0 条评论