Linux kernel 2.6系列を使用するときのメモ
Section "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
Option "CorePointer"
Option "Device" "/dev/psaux"
Option "Protocol" "PS/2"
Option "Emulate3Buttons" "true"
Option "EmulateWheel" "true"
Option "EmulateWheelButton" "2"
Option "EmulateInerita" "50"
Option "ZAxisMapping" "4 5"
EndSection
Section "InputDevice"
Identifier "Generic Mouse"
Driver "mouse"
Option "SendCoreEvents" "true"
Option "Device" "/dev/input/mice"
Option "Protocol" "ImPS/2"
Option "Emulate3Buttons" "true"
Option "ZAxisMapping" "4 5"
EndSection
のように記述していたが、これが2.6系列では期待するように動作しない。
2.6系列では Section "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
Option "CorePointer"
Option "Device" "/dev/psaux"
Option "Protocol" "ImPS/2"
Option "Emulate3Buttons" "on"
Option "Emulate3Timeout" "50"
Option "EmulateWheel" "on"
Option "EmulateWheelButton" "2"
# Option "EmulateInerita" "50"
Option "ZAxisMapping" "4 5"
EndSection
として使用している。これで、トラックポイント、USB接続のマウスとも
だいたい期待するように動いてくれる。
(つねに、Emulate3Buttonsなのはつらいが、もう慣れた)
もっとまともな設定方法を知っている人が
いたらおしえてください。Section "Device"
Identifier "Generic Video Card"
Driver "radeon"
VendorName "Videocard vendor"
BoardName "ATI Radeon Mobility M6"
VideoRam 16384
Option "BIOSHotkeys" "on"
EndSection
これで、まぁ、なんとか使えるようになる。
ときどき、期待するように切り替わらないが、いったん
Xを起動し直すと切り替わるようになることがある。

![]()