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

vmware下debian安装vmware-tools及安装后带来的鼠标滚轮问题

vmware下debian安装vmware-tools及安装后带来的鼠标滚轮问题--Linux发行版技术-Debian信息,下面是详情阅读。
1、安装vmware-tools

准备条件:vmware-tools (在设置vmware光驱为物理光驱后,选“install vmware tools”在debian的光驱中可以看到)和 linux-header (用 uname -a 查看当前kernel版本后,下载相应的linux-header)

安装:解压缩vmware-tools,到解压后的文件夹中执行 ./vmware-install.pl 除了linux-header路径要选择,刚安装的linux-header所在路径外,其余都可以默认。

2、配置 鼠标

安装 vmware-tools后,/etc/X11/xorg.conf 鼠标的设置会被改成如下方式:

Section "InputDevice"
Identifier "Configured Mouse"
Driver "vmmouse"
Option "CorePointer"
Option "Device" "/dev/input/mice"
Option "Protocol" "ps/2"
Option "Emulate3Buttons" "true"
EndSection

这样会带来鼠标滚轮不可用问题。

要使鼠标滚轮可用,可以在/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"
EndSection
推荐阅读
author-avatar
sx-March23
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有