LoginSignup
4
3

More than 5 years have passed since last update.

#FreeBSD + xorg-server-1.14 で vmmouse を復活させる

Posted at

Xmasにpkgが更新されていたので、クリスマスプレゼントとばかりVMWare Fusion の FreeBSD-10.1-RELEASE-ad64 を更新したら、マウスの動きがキョドるようになったので。

xorg-server-1.14.7_1,1

原因

xorg-server が 1.12 から 1.14 に上がり、それにともなってデバイス検知が HAL から devd になったのはいいのだけど、これが vmmouse ではなく普通の mouse を load してしまうため。

対策

  1. xorg.confを作成しなおし
# Xorg -configure
# mv /root/xorg.conf.new /etc/X11/xorg.conf
  1. /etc/X11/xorg.conf.d/input.confを以下のとおり作成
# mkdir /etc/X11/xorg.conf.d
# cat > /etc/X11/xorg.conf.d/input.conf
Section "InputClass"
        Identifier              "Mouse Defaults"
        Driver                  "vmmouse"
        MatchIsPointer          "on"
EndSection

これ、xf86-input-vmmouseのインストール時に自動生成するべきだよなあ…

私からは以上です。

Dan the FreeBSD Desktop user

4
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
3