Mouse wheel problem solving after installing Ubuntu in VMware

  
                  

Windows has nested Ubuntu through VMware and found that the mouse wheel function cannot be used. I found it on the Internet and said that I want to change the xorg.conf configuration file.


sudo gedit /etc/X11/xorg.conf


"Input Device"

Option "Protocol" "ps/2"

is replaced with

Option "Protocol" "IMPS/2"


My xorg.conf did not have this statement, it was added.


Ctrl+alt+backspace Restart X, still no effect.


On the Internet, I found out that my configuration is still less than one sentence:


Option "Emulate3Buttons" "yes"

Also, my The driver is: Driver "vmmouse"

and the most common ones are: Driver "mouse"


Complete configuration paragraph:

Section "InputDevice"

Identifier "Configured Mouse"

Driver "vmmouse"

Option "Protocol" "ImPS/2"

Option "CorePointer"

Option "Device" "/dev/input/mice"

Option "ZAxisMapping" "4 5"

Option "Emulate3Buttons" "yes"

EndSection

Copyright © Windows knowledge All Rights Reserved