Ubuntu8.10でx61の真ん中ボタンでスクロールできなくなった

自分のマシンはx61で左クリックと右クリックの間に真ん中クリックボタン(正式名称わかりません)があります。
その真ん中ボタンが効かなくなったので検索して解決したメモ。

/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.XAxisMapping" type="string">6 7</merge>
 <merge key="input.x11_options.YAxisMapping" type="string">4 5</merge>
 <merge key="input.x11_options.ZAxsisMapping" type="string">4 5</merge>
 <merge key="input.x11_options.Emulate3Buttons" type="string">true</merge>
</match>


参考URLは以下。
http://www.levistone.net/log/eid142.html
http://www.levistone.net/log/eid142.html


参考っていうかそのまんまですね。