我使用的Ubuntu12.10 内核版本是3.5
触摸板不能关闭(因为被识别成了PS鼠标),打字的时候十分蛋疼。求解决方案。
关于Dell Inspiron 7420的AHCI触摸板被识别成PS鼠标的问题
-
- 帖子: 3
- 注册时间: 2013-03-17 17:37
- 系统: ubuntu12.10 windows7
- cuihao
- 帖子: 4793
- 注册时间: 2008-07-24 11:33
- 来自: 郑州
- 联系:
Re: 关于Dell Inspiron 7420的AHCI触摸板被识别成PS鼠标的问题
试试:
代码: 全选
sudo rmmod psmouse
求人不如求它仨: 天蓝的Wiki 屎黄的Wiki 蓝红黄蓝绿红
Site: CUIHAO.TK Twitter: @cuihaoleo
Machine: Athlon64 X2 5200+ / 2x2GB DDR2-800 / GeForce GTS 450
AD: ~まだ見ぬ誰かの笑顔のために~
Site: CUIHAO.TK Twitter: @cuihaoleo
Machine: Athlon64 X2 5200+ / 2x2GB DDR2-800 / GeForce GTS 450
AD: ~まだ見ぬ誰かの笑顔のために~
-
- 帖子: 3
- 注册时间: 2013-03-17 17:37
- 系统: ubuntu12.10 windows7
Re: 关于Dell Inspiron 7420的AHCI触摸板被识别成PS鼠标的问题
这个太暴力了。我想让他能够正常使用。。。cuihao 写了:试试:代码: 全选
sudo rmmod psmouse
不过还是谢谢你亲。。
-
- 帖子: 12
- 注册时间: 2012-06-29 11:08
Re: 关于Dell Inspiron 7420的AHCI触摸板被识别成PS鼠标的问题
需要自己编译下psmouse的内核模块。
可以在如下地方里找下那个内核源代码
https://github.com/bgamari/linux/tree/alps
或者留邮箱我发你一个。。。
我的那个已经加入了许多触摸板的型号,dell的有好多,包括我自己的。。。
再编译
cd drivers/input/mouse/
make -C /lib/modules/`uname -r`/build M=`pwd` psmouse.ko
然后
需要root权限
去 /lib/modules/uname -r/kernel/drivers/input/mouse/下面把原来的psmouse.ko删除
然后再把自己编译的拷贝进去
最后重启
解决办法参考自下面的#139
https://bugs.launchpad.net/opensuse/+bu ... mments=all
可以在如下地方里找下那个内核源代码
https://github.com/bgamari/linux/tree/alps
或者留邮箱我发你一个。。。
我的那个已经加入了许多触摸板的型号,dell的有好多,包括我自己的。。。
再编译
cd drivers/input/mouse/
make -C /lib/modules/`uname -r`/build M=`pwd` psmouse.ko
然后
需要root权限
去 /lib/modules/uname -r/kernel/drivers/input/mouse/下面把原来的psmouse.ko删除
然后再把自己编译的拷贝进去
最后重启
解决办法参考自下面的#139
https://bugs.launchpad.net/opensuse/+bu ... mments=all
-
- 帖子: 3
- 注册时间: 2013-03-17 17:37
- 系统: ubuntu12.10 windows7
Re: 关于Dell Inspiron 7420的AHCI触摸板被识别成PS鼠标的问题
[email protected]neo23.lee 写了:需要自己编译下psmouse的内核模块。
可以在如下地方里找下那个内核源代码
https://github.com/bgamari/linux/tree/alps
或者留邮箱我发你一个。。。
我的那个已经加入了许多触摸板的型号,dell的有好多,包括我自己的。。。
再编译
cd drivers/input/mouse/
make -C /lib/modules/`uname -r`/build M=`pwd` psmouse.ko
然后
需要root权限
去 /lib/modules/uname -r/kernel/drivers/input/mouse/下面把原来的psmouse.ko删除
然后再把自己编译的拷贝进去
最后重启
解决办法参考自下面的#139
https://bugs.launchpad.net/opensuse/+bu ... mments=all
亲 麻烦你发一下吧 谢谢~
-
- 帖子: 12
- 注册时间: 2012-06-29 11:08
Re: 关于Dell Inspiron 7420的AHCI触摸板被识别成PS鼠标的问题
Gmail不允许发带有执行的附件,懒得再去修改文件格式等等,我就上传到论坛了。
- 附件
-
- mouse.zip
- (336.38 KiB) 已下载 62 次
-
- 帖子: 12
- 注册时间: 2012-06-29 11:08
Re: 关于Dell Inspiron 7420的AHCI触摸板被识别成PS鼠标的问题
使用效果如何?
从那个 lanchpad转来的
I have a Dell Inspiron 15r n5110 as well. I have modified the patch I found here
http://people.canonical.com/~sforshee/a ... -alps-0.10
and now it recognizes my mouse as a touchpad.
When loading the original patched psmouse.ko, it reports for my trackpad:
alps.c: E6 report: 00 00 64
alps.c: E7 report: 73 03 50
After adding an entry in alps.c for 0x73, 0x03 , 0x50 and recompiling the module it works.
I have copied the entry for the dell vostro 1400, and changed the 0x02 to 0x03. I don't know yet if the other settings are OK for my touchpad, but at least it is detected as such...
从那个 lanchpad转来的
I have a Dell Inspiron 15r n5110 as well. I have modified the patch I found here
http://people.canonical.com/~sforshee/a ... -alps-0.10
and now it recognizes my mouse as a touchpad.
When loading the original patched psmouse.ko, it reports for my trackpad:
alps.c: E6 report: 00 00 64
alps.c: E7 report: 73 03 50
After adding an entry in alps.c for 0x73, 0x03 , 0x50 and recompiling the module it works.
I have copied the entry for the dell vostro 1400, and changed the 0x02 to 0x03. I don't know yet if the other settings are OK for my touchpad, but at least it is detected as such...