T60 drivers for Linux (Ubuntu)
Posted: Sat Nov 15, 2008 2:05 pm
How to obtain a Trackpoint driver? I can't adjust speed and sensitivity
Est. 1995 - Copyright © 1995-2017 (see FAQ for details)
https://forum.thinkpads.com/
Code: Select all
echo -n 160 > /sys/devices/platform/i8042/serio1/serio2/speed
echo -n 218 > /sys/devices/platform/i8042/serio1/serio2/sensitivity
Code: Select all
echo -n 210 > /sys/devices/platform/i8042/serio1/sensitivity
What exactly do you mean? Are you trying to get scrolling enabled on your X61? If so that's different from setting the speed and sensitivity.ace07 wrote: So, not scrolling for me yet.
Superego wrote:Your syntax is wrong. It's
echo -n value /path/to/file
not
echo -n 120 /path/to/file value
Sorry if my previous post wasn't clear.
So, for example, if you wanted to try the value of of 210 (I'm assuming that's what you wanted, going off your post), then you would enter the following as root:
Try that first. As a test I tried to change my sensitivity using sudo as I wasn't able to because of permissions. I set this up a while ago as a script so I wouldn't have to change it manually and I forgot if sudo vs. su made a difference...apparently it does.Code: Select all
echo -n 210 > /sys/devices/platform/i8042/serio1/sensitivity
What exactly do you mean? Are you trying to get scrolling enabled on your X61? If so that's different from setting the speed and sensitivity.ace07 wrote: So, not scrolling for me yet.
What distro are you using? For my Arch Linux I had to install the synaptics driver to enable the advanced features of the touchpad (two-fingered scrolling, vertical scrolling via right side of the touchpad, etc.). After that I had to modify my /etc/X11/xorg.conf. You should check out this link at thinkwiki before modifying anything.
Hmmm... plughed thru Thinkwiki - something for the Linux nerd & more or less unuseable for an "uneducated user".Superego wrote:Thinkwiki is your friend:
http://www.thinkwiki.org
I think GNOME has a GUI for doing this, but here's how I adjust the speed and sensitivity.
As root (or sudo) enter the following:NOTE: The path may vary (e.g. /sys/devices/platform/i8042/serio0/serio2/speed) so look before you do this.Code: Select all
echo -n 160 > /sys/devices/platform/i8042/serio1/serio2/speed echo -n 218 > /sys/devices/platform/i8042/serio1/serio2/sensitivity
The values range from 0-255 (least sensitive/slowest to most sensitive/fastest). Once you have feel for what you like you can add those lines to your local startup script (e.g. /etc/rc.d/rc.local).
Edit:
You wont have to get a driver for the trackpoint. It's enabled by default in the lastest kernel (unless of course you compile your own kernel)
aaa wrote:There is the graphical gsynaptics tool, after you install it, it'll show up in System->Preferences->Touchpad, You have to enable SHMConfig first though, which isn't as easy.:
https://help.ubuntu.com/community/SynapticsTouchpad
Superego wrote:mgw,
Not sure if you found this on Thinkwiki or not, but here's their page on how to configure the trackpoint (not the touchpad, which would be something separate):
http://www.thinkwiki.org/wiki/How_to_co ... TrackPoint
I found this on google, and may be more what you're looking for:
http://tpctl.sourceforge.net/configure-trackpoint.html
It even has a .deb file so you should be able to install in Ubuntu with no problem.
Code: Select all
# echo -n 210 > /sys/devices/platform/i8042/serio1/serio2/sensitivity
# echo -n 150 > /sys/devices/platform/i8042/serio1/serio2/speed
Code: Select all
Option "EmulateWheel" "on"
Option "EmulateWheelButton" "2"
gksudo will do as well ?Marin85 wrote:For Ubuntu 8.xx trackpoint speed and sensitivity: (as root)