해당 마우스
MX500, MX510, G5, MX600 cordless laser, MX610 laser, 등 로지텍에서 버튼 많은 마우스들.
이 마우스들에는 웹브라우저에서 손쉽게 페이지 앞뒤로 이동할수 있는 버튼이 있으나, 우분투에서는 작동하지 않습니다. 쉬프트+휠버튼 돌리기로 앞뒤로 쉽게 이동하는 방법도 있지만, 남는 버튼을 안쓰면 아까운 분들을 위해 xorg.conf의 버튼 매핑을 소개합니다.
xorg.conf 수정 명령
[code:3ts6u878]sudo gedit /etc/X11/xorg.conf[/code:3ts6u878]
파이어폭스2용 버튼 매핑
[code:3ts6u878]Section "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
Option "CorePointer"
Option "Device" "/dev/input/mice"
Option "Protocol" "auto"
Option "Buttons" "7"
Option "ZAxisMapping" "4 5"
Option "ButtonMapping" "1 2 3 6 7 4 5 6"
EndSection[/code:3ts6u878]
파이어폭스3용 버튼 매핑
[code:3ts6u878]Section "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
Option "CorePointer"
Option "Device" "/dev/input/mice"
Option "Protocol" "auto"
Option "Buttons" "7"
Option "ZAxisMapping" "4 5"
Option "ButtonMapping" "1 2 3 8 9"
EndSection[/code:3ts6u878]
xorg.conf는 잘못 수정하면 x윈도가 안뜨니까, 꼭 백업하는거 잊지 마세요.