2
9月
0
Ubuntu7.0.4で5つボタンのマウス(IntelliMouse Optical)を使う
Ubuntuの続きです。
我が家で使用しているマウスは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
----------------------------------------------------------------------
と修正したら再起動して終わり!
参考サイト
http://www.linuxmint.com/forum/viewtopic.php?p=22109
Enjoyed reading this post?
Subscribe to the RSS feed and have all new posts delivered straight to you.
Subscribe to the RSS feed and have all new posts delivered straight to you.
Post your comment
