<br><br><div><span class="gmail_quote">On 4/5/07, <b class="gmail_sendername">Ken Bloom</b> <<a href="mailto:kbloom@gmail.com">kbloom@gmail.com</a>> wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
On Wednesday 04 April 2007 18:59, Issac Trotts wrote:<br>> Ubuntu mostly works great on this laptop, except that wireless access<br>> required writing a script and by default the tap-to-click misfeature<br>> is enabled. Wireless is working fine now, but I haven't yet figured
<br>> how to remove tap-to-click.<br>><br>> The touchpad is an ALPS GlidePoint<br>> (<a href="http://www.alps.co.jp/index_e.htm">http://www.alps.co.jp/index_e.htm</a>), or at least that's what I gather<br>
> from inserting some printk's into the mouse driver and running dmesg.<br>> This is confirmed by cat /proc/bus/input/devices, which says among<br>> other things<br>><br><br>I think it's a matter of getting the right driver for the right device.
<br><br><a href="http://ubuntu.wordpress.com/2005/11/15/fixing-my-alps-touchpad-with-the-synaptics-driver/">http://ubuntu.wordpress.com/2005/11/15/fixing-my-alps-touchpad-with-the-synaptics-driver/</a><br><a href="http://ubuntuforums.org/showthread.php?t=78904">
http://ubuntuforums.org/showthread.php?t=78904</a><br><br>also have a look at the xorg.conf files for my laptop available from<br><a href="http://www.iit.edu/~kbloom1/Compaq_Presario_v2310us">http://www.iit.edu/~kbloom1/Compaq_Presario_v2310us
</a><br><br>--Ken</blockquote><div><br>Thanks, that did the trick. I had to remove /etc/modprobe.d/psmouse.modprobe to get the ALPS GlidePoint to show up as itself in /proc/bus/input/devices rather than as a generic PS/2 mouse. Then I inserted this stuff into my /etc/X11/xorg.conf:
<br><br>Section "InputDevice"<br>Identifier "ALPS"<br>Driver "synaptics"<br>Option "AlwaysCore"<br>Option "Device" "/dev/input/event3"<br>Option "Protocol" "event"
<br>Option "LeftEdge" "120"<br>Option "RightEdge" "830"<br>Option "TopEdge" "120"<br>Option "BottomEdge" "650"<br>Option "FingerLow" "14"
<br>Option "FingerHigh" "15"<br>Option "MaxTapTime" "0" # was 180. Set to 0 to disable tap-to-click<br>Option "MaxTapMove" "110"<br>Option "ClickTime" "0"
<br>Option "EmulateMidButtonTime" "75"<br>Option "VertScrollDelta" "10"<br>Option "HorizScrollDelta" "0"<br>Option "MinSpeed" "0.45"<br>Option "MaxSpeed" "
0.75"<br>Option "AccelFactor" "0.020"<br>Option "EdgeMotionMinSpeed" "200"<br>Option "EdgeMotionMaxSpeed" "200"<br>Option "UpDownScrolling" "1"
<br>Option "CircularScrolling" "0"<br>Option "CircScrollDelta" "0.1"<br>Option "CircScrollTrigger" "2"<br>Option "SHMConfig" "true"<br>EndSection
<br><br><br>Section "ServerLayout"<br> Identifier "Default Layout"<br> Screen "Default Screen"<br> InputDevice "Generic Keyboard"<br># InputDevice "Configured Mouse"
<br> InputDevice "ALPS"<br>EndSection<br><br>Even without "Configured Mouse" it still detects my USB mouse.<br><br>One thing that's a little strange is that sometimes the touchpad shows up on event2 and sometimes on event3. Not sure how to deal with that...
<br></div></div><br>-ijt<br><br>