歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
Linux教程網 >> Linux基礎 >> Linux教程 >> Ubuntu 9.0.4配置TrackPoint

Ubuntu 9.0.4配置TrackPoint

日期:2017/2/28 16:43:45   编辑:Linux教程

Ubuntu 9.0.4下配置TrackPoint筆記。

首先找到設備號
grep IBM /var/log/Xorg.0.log

修改 /etc/X11/xorg.conf

xorg.conf
//加入如下內容,重啟
Section "InputDevice"
Identifier "Configured Mouse"
Driver "evdev"
Option "CorePointer"
Option "Device" "/dev/input/event9"
Option "Emulate3Buttons" "true"
Option "EmulateWheel" "true"
Option "EmulateWheelButton" "2"
Option "ZAxisMapping" "4 5"
EndSection

Section "ServerLayout"
Identifier "Default Layout"
Screen "Default Screen"
Inputdevice "Configured Mouse"
EndSection


//如果不行,可以試下如下方法
再來個8.10的
創建文件:/etc/hal/fdi/policy/mouse-wheel.fdi
代碼:
<match key="info.product" string="TPPS/2 IBM TrackPoint">
<merge key="input.x11_options.EmulateWheel" type="string">true</merge>
<merge key="input.x11_options.EmulateWheelButton" type="string">2</merge>
<merge key="input.x11_options.ZAxsisMapping" type="string">4 5</merge>
<merge key="input.x11_options.Emulate3Buttons" type="string">true</merge>
</match>

Copyright © Linux教程網 All Rights Reserved