OS/Linux

젠투리눅스 설치하기 - VMware 에서 마우스에게 자유를~

xProgrammer 2009. 2. 13. 09:23
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