VMWare_Ubuntu - アールメカブ

アールメカブ


VMWare_Ubuntu

Linuxの備忘録

Windows版VMWare上のUbunutでマウスのホイールが効かない

/proc/bus/input/devicesのマウスの項目を確認。

$ vi /proc/bus/input/devices
...

I: Bus=0011 Vendor=0002 Product=0005 Version=0000
N: Name="ImPS/2 Generic Wheel Mouse"
P: Phys=isa0060/serio1/input0
S: Sysfs=/class/input/input3
H: Handlers=mouse1 event3 ts1
B: EV=7
B: KEY=70000 0 0 0 0 0 0 0 0
B: REL=103

/etc/X11/xorg.confを修正

$ sudo vi /etc/X11/xorg.conf
...
Section "InputDevice"
       Identifier      "Configured Mouse"
       Driver          "mouse"
       Option          "CorePointer"
       Option          "Device"                "/dev/input/mice"
       Option          "Protocol"              "ps/2"
       Option          "ZAxisMapping"          "4 5"
       Option          "Emulate3Buttons"       "true"
EndSection

Section "InputDevice"
       Identifier      "Configured Mouse"
       Driver          "evdev"
       Option          "CorePointer"
       Option          "Device"                "/dev/input/event3"
       Option          "Protocol"              "ps/2"
       Option          "ZAxisMapping"          "4 5"
       Option          "Emulate3Buttons"       "true"
EndSection
 
Link: Linuxの備忘録(4487d)
Last-modified: 2009-01-07 (水) 18:34:04 (5580d)