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