热门标签 | HotTags
当前位置:  开发笔记 > 运维 > 正文

Debian下鼠标滚轮的配置

Debian下鼠标滚轮的配置--Linux发行版技术-Debian信息,下面是详情阅读。
今日,安装好Debian系统后正在调试环境,忽然发觉鼠标滚轮没有作用,上网查询资料后得知,需修改/etc/X11/xorg.conf文件,修改内容如下:

Section "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
Option "CorePointer"
Option "Device" "/dev/input/mice"
Option "Protocol" "ImPS/2"
Option "Emulate3Buttons" "true"
Option "ZAxisMapping" "4 5"
EndSection

修改两项
第一,Protocol修改为ImPS/2;
第二,添加ZAxisMapping项,值为"4 5",保存后重新启动,鼠标可以正常使用。
推荐阅读
author-avatar
手机用户2502908547
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有