在T23里面装了Ubuntu 8.04后,鼠标的中间按键不能像Win下一样工作,这样在看网页的时候就不能滑动,很不方便,今天上网查了一下,原来已经有解决办法,而且很简单,效果很好。
第一步:
sudo vi /etc/X11/xorg.conf
第二步:
在里面找到:
Section "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
Option "CorePointer"
EndSection
第三步:
在Endsection前添加两行:
Option "EmulateWheel" "true"
Option "EmulateWheelButton" "2"
整个Section是:
Section "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
Option "CorePointer"
Option "EmulateWheel" "true"
Option "EmulateWheelButton" "2"
EndSection
第四步:
为了要是配置起效,需要重启Gnome,我使用的方法是登出然后再登入。

