Education2008/09/30 07:52
출처 : http://jedison.tistory.com/47 (Jedison's Note)

VMware에 젠투시스템을 설치했을 때 마우스가 vmware를 빠져나올때 ctrl+alt를 클릭할 필요가 없게된다.
또한 마우스 휠도 사용할 수 있게 한다.

#emerge x11-drivers/xf86-input-vmmouse
#vi /etc/X11/xorg.conf
-----------------------------------------------------------
변경전
-----------------------------------------------------------
Section "InputDevice"
        Identifier  "Mouse0"
        Driver      "mouse"
        Option      "Protocol" "auto"
        Option     "Device" "/dev/input/mice"
        Option     "ZAxisMapping" "4 5 6 7"
EndSection
-----------------------------------------------------------
변경후
-----------------------------------------------------------
Section "InputDevice"
       Identifier  "Mouse0"
       Driver      "vmmouse"
       Option      "Protocol" "auto"
       Option      "Device" "/dev/input/mouse0"
       Option      "ZAxisMapping" "4 5 6 7"
EndSection
-----------------------------------------------------------
Posted by mirwing