Notice
Recent Posts
Recent Comments
04-18 09:12
관리 메뉴

Black&White

VirtualBox 사용시 리눅스(우분투)에서 마우스 휠 사용 본문

유용한정보

VirtualBox 사용시 리눅스(우분투)에서 마우스 휠 사용

V.E.N 2010. 7. 13. 16:39
/etc/fstab 에 아래 줄 삽입

none            /proc/bus/usb   usbfs   devgid=46,devmode=664 0 0


우분투의 경우,
/etc/X11/xorg.conf 파일에 아래 내용을 추가 또는 xorg.conf 파일이 없는 경우는 새로 만들면 됨

$sudo vi /etc/X11/xorg.conf
    Section "InputDevice"
            Identifier "Configured Mouse"
            Driver "vmmouse"
            Option "CorePointer"
            Option "Device" "/dev/input/mice"
            Option "Protocol" "ImPS/2"
            Option "Buttons" "5"
            Option "ZAxisMapping" "4 5"
    EndSection
Comments