TrackPoint_configure_ThinkPad_squeeze(06-16.2011)

 //http://forum.ubuntu.org.cn/viewtopic.php?f=48&t=266156

root@username:~# aptitude install gpointing-device-settings下列“新”软件包将被安装。           gpointing-device-settings libgpds0{a} 0 个软件包被升级,新安装 2 个,0 个将被删除, 同时 512 个将不升级。需要获取 81.3 kB 的存档。解包后将要使用 692 kB。您要继续吗?[Y/n/?] 

Gpoint设置问题
把ps2-trackpoint标签下button选2
去掉水平滑动
中键就可以了

//http://hi.baidu.com/fregt/blog/item/7aaa8aeeb1afd6f5b3fb956b.html

在终端中输入:sudo agt-get install gpointing-device-settings

安装完重启后生效

在系统->首选项 ->Pointing devices

//http://www.linuxsir.org/bbs/thread362099.html

可以用
sudo Xorg :1 -configure
生成一个原始的xorg.conf.new,把它拷到/etc/X11/xorg.conf,然后修改。

自己在/etc/X11下创建个xorg.conf文件。想修改哪块信息就往里面写就行了!只需写入你关心的那一块内容,比如3D硬件加速

//http://linux-wiki.cn/wiki/配置Trackpoint的中键滚轮功能

较新的发行版

较新的发行版中,键盘、鼠标不再由X服务器而是HAL管理

首先,创建文件/etc/hal/fdi/policy/mouse-wheel.fdi,内容为:

<?xml version="1.0" encoding="UTF-8"?>
<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>
############

Debian Lenny/Sid或openSUSE

/etc/X11/xorg.conf中,找到Configured Mouse并将其所在的Section做如下修改:

Section "InputDevice"
   Identifier  "Configured Mouse"
   Driver      "mouse"
   Option      "CorePointer"
   Option      "Device"              "/dev/input/mice"
   Option      "Protocol"            "ExplorerPS/2"
   Option      "Emulate3Buttons"     "true"
   Option      "Emulate3TimeOut"     "50"
   Option      "EmulateWheel"        "on"
   Option      "EmulateWheelTimeOut" "200"
   Option      "EmulateWheelButton"  "2"
   Option      "YAxisMapping"        "4 5"
   Option      "XAxisMapping"        "6 7"
   Option      "ZAxisMapping"        "4 5"
EndSection
################################

Opera中滚动的设置

Opera在水平滚动时也可能发生“前进”、“后退”等操作,修正方法为:

菜单中:工具->首选项->高级->快捷键->鼠标设置->Opera Standard->编辑

在弹出的窗口中:

Application->Button6->删除->Button7->删除

确定后,选中Opera Standard(已修改),一路确定即可。



//http://www.stamhe.com/?p=85

驱动小黑的红点+中键TrackPoint

驱动小黑的红点+中键TrackPoint

http://blog.chinaunix.net/u/14165/showart_298024.html

用evdev作为X Server输入驱动的(ubuntu8。10)修改xorg的方式已经不可用。
可以采用下面的方法:
#sudo vi /etc/hal/fdi/policy/mouse-wheel.fdi
添加如下内容:




true
2
4 5
true
200


然后重启服务 hal 和 gdm 即可。
…init.d/hal gdm restart

Thinkpad的 红点+中键 可以滚屏,在很多发行版本默认下都不可用,
刚刚在 xorg.conf 里添加
Option “EmulateWheel” “true”
Option “EmulateWheelButton” “2″
即可。参考:

http://www.thinkwiki.org/wiki/How_to_configure_the_TrackPoint


posted @ 2011-06-16 21:57  陳聽溪  阅读(426)  评论(0编辑  收藏  举报