Ubuntu7.0.4で5つボタンのマウス(IntelliMouse Optical)を使う
LINUX, 自作PC 9 月 2nd. 2007, 11:31amUbuntuの続きです。
我が家で使用しているマウスは5つボタンのIntelliMouse Opticalなのですが、デフォルトのままだとサイドのボタンが使えないので、これを使えるようにする方法を忘れないようにメモφ(´ι _` )
【1】xorg.confを念のためバックアップ
> sudo cp /etc/X11/xorg.conf /etc/X11/xorg.conf.bak
【2】xorg.confを編集
> sudo gedit /etc/X11/xorg.conf
---------------------------------------------------------------------- Section "InputDevice" Identifier "Configured Mouse" Driver "mouse" Option "CorePointer" Option "Device" "/dev/input/mice" Option "Protocol" "ImPS/2" Option "ZAxisMapping" "4 5" Option "Emulate3Buttons" "true" EndSection ----------------------------------------------------------------------
となっている個所を
---------------------------------------------------------------------- Section "InputDevice" Identifier "Configured Mouse" Driver "mouse" Option "CorePointer" Option "Device" "/dev/input/mice" Option "Protocol" "ExplorerPS/2" Option "Buttons" "7" Option "ZAxisMapping" "4 5" Option "Emulate3Buttons" "false" Option "ButtonMapping" "1 2 3 6 7" EndSection ----------------------------------------------------------------------
と修正したら再起動して終わり!