블로그 이미지
No pain, no gain!
lepoussin

Tag

Notice

Recent Post

Recent Comment

Recent Trackback

Archive

calendar

1 2 3 4 5 6
7 8 9 10 11 12 13
14 15 16 17 18 19 20
21 22 23 24 25 26 27
28 29 30
  • total
  • today
  • yesterday
04-29 17:24
2009. 5. 2. 20:28 Virtual Machine/Sun VirtualBox
[게스트 확장 설치]를 하여도 마우스 통합이 제대로 안 될 것이다.
([게스트 확장 설치]를 수행하지 않았다면 이전 글인 "VirtualBox 2.2.2 상의 Ubuntu 9.04에서 게스트 확장 설치 문제 해결"를 우선 읽도록 하자.)
이 문제는 다음과 같은 과정을 통해 해결할 수 있다.
  1. 우선 다음 파일이 있는지 확인한다.
    $ ls -la /usr/lib/xorg/modules/input/vbox*
    -rw-r--r-- 1 root root 186664 2008-10-25 19:30 /usr/lib/xorg/modules/input/vboxmouse_drv.so

  2. xorg.conf 파일을 수정한다.
    $ sudo gedit /etc/X11/xorg.conf
    ※ vi를 사용해도 무관하다.

  3. xorg.conf 파일의 끝부분에 다음 코드를 넣는다.
    Section "InputDevice"
            Identifier      "Configured Mouse"
            Driver          "vboxmouse"
            Option         "CorePointer"
    EndSection

  4. 재부팅 후, 마우스 통합이 제대로 되었는지 확인한다.

posted by lepoussin