Page 1 of 1

[SOLVED]Touch pad moves but doesn't select

Posted: Sat Aug 27, 2011 10:23 am
by Gabriele_Angelo
Hello there i'm using LMDE on my laptop.
Using touch pad i can move my pointer, i can scroll and the two buttons work perfectly, but if i hit the pad as a click (or double click) it does nothing.
Has anyone encountered this problem before?

Re: Touch pad moves but doesn't select

Posted: Sat Aug 27, 2011 10:57 am
by aljoriz
To activate "click on tap" for your touchpad,
Goto the terminal type

Code: Select all

 sudo gedit /usr/share/X11/xorg.conf.d/50-synaptics.conf
and replace the content of the file with the following:

Code: Select all

Section "InputClass"
Identifier "touchpad catchall"
Driver "synaptics"
MatchIsTouchpad "on"
Option "TapButton1" "1"
Option "VertEdgeScroll" "1"
EndSection

Re: Touch pad moves but doesn't select

Posted: Sat Aug 27, 2011 2:55 pm
by Gabriele_Angelo

Code: Select all

$ cat /usr/share/X11/xorg.conf.d/50-synaptics.conf 
# Example xorg.conf.d snippet that assigns the touchpad driver
# to all touchpads. See xorg.conf.d(5) for more information on
# InputClass.
# DO NOT EDIT THIS FILE, your distribution will likely overwrite
# it when updating. Copy (and rename) this file into
# /etc/X11/xorg.conf.d first.
# Additional options may be added in the form of
#   Option "OptionName" "value"
#
Section "InputClass"
        Identifier "touchpad catchall"
        Driver "synaptics"
        MatchIsTouchpad "on"
        Option "TapButton1" "1"
        Option "VertEdgeScroll" "1"
# This option is recommend on all Linux systems using evdev, but cannot be
# enabled by default. See the following link for details:
# http://who-t.blogspot.com/2010/11/how-to-ignore-configuration-errors.html
#       MatchDevicePath "/dev/input/event*"
EndSection
Thanks for your help but... i mean... i think lines are the same, but still doesn't work... i rebooted twice.

Re: Touch pad moves but doesn't select

Posted: Sat Aug 27, 2011 4:40 pm
by xircon
Try (from a terminal):

Code: Select all

synclient TapButton1=1
May give some useful errors if it doesn't work.

Cheers

Steve

Re: Touch pad moves but doesn't select

Posted: Sat Aug 27, 2011 9:10 pm
by Gabriele_Angelo
Uhm i got something unexpected. I got nothing, i mean when i type

Code: Select all

synclient TapButton1=1
on terminal, the system respond with a new line ready to receive a new command without writing anything.
I think i miss some driver, i'll check them out.

Re: Touch pad moves but doesn't select

Posted: Sun Aug 28, 2011 4:00 am
by xircon
Hmmmm, if the driver wasn't installed I would expect error messages, not the other way round.

Re: Touch pad moves but doesn't select

Posted: Sun Aug 28, 2011 4:39 am
by aljoriz
Gabriele_Angelo wrote: Thanks for your help but... i mean... i think lines are the same, but still doesn't work... i rebooted twice.
when you reboot type

Code: Select all

sudo nano /usr/share/X11/xorg.conf.d/50-synaptics.conf
REMOVE all the COMMENTS so that entry would really be just this

Code: Select all

Section "InputClass"
        Identifier "touchpad catchall"
        Driver "synaptics"
        MatchIsTouchpad "on"
        Option "TapButton1" "1"
        Option "VertEdgeScroll" "1"
EndSection
Yes it 'looks' the same but the # before the EndSection is considered as a line and not a comment; Tried this before so I hope this will help you.

Re: Touch pad moves but doesn't select

Posted: Sun Aug 28, 2011 6:44 am
by Gabriele_Angelo
Well i put together the section. Nothing.
I moved to top the section. Nothing.
I did what wrote on this lines

Code: Select all

# DO NOT EDIT THIS FILE, your distribution will likely overwrite
# it when updating. Copy (and rename) this file into
# /etc/X11/xorg.conf.d first.
and the erased all comments. Nothing.
Now in

Code: Select all

 /usr/share/X11/xorg.conf.d/50-synaptics.conf
i have only this

Code: Select all

 $ cat /usr/share/X11/xorg.conf.d/50-synaptics.conf 
Section "InputClass"
        Identifier "touchpad catchall"
        Driver "synaptics"
        MatchIsTouchpad "on"
        Option "TapButton1" "1"
        Option "VertEdgeScroll" "1"
EndSection
So weird.

Re: Touch pad moves but doesn't select

Posted: Sun Aug 28, 2011 7:54 am
by xircon
Are you on a 32 or 64 bit system? I have written a little gui to control synclient, its 64 bit. Its in my dropbox http://dl.dropbox.com/u/1286239/scgui

The buttons go green when set on, grey when set off. Works well on my system and has for months. If you click touchpad off, press enter to turn it back on.

Might work, might not.

Re: Touch pad moves but doesn't select

Posted: Sun Aug 28, 2011 9:11 am
by Gabriele_Angelo
I'm on a 32 bit system, i tried to execute it anyway and i got errors and these two files

Code: Select all

$ sudo ./scgui 
./scgui: 1: 8: not found
./scgui: 6: Syntax error: ")" unexpected

Code: Select all

?

Code: Select all

????@@8?@??@@?????????P?P??P???%?vdUPX!?????2ߥ2???????
They were empty text files.

Re: Touch pad moves but doesn't select

Posted: Sun Aug 28, 2011 9:15 am
by xircon
Won't run on a 32bit system afaik. All is does is act as a frontend to synclient anyway. Can't recompile, it is written in Free Pascal / Lazarus (which is the IDE for FPC).

Re: Touch pad moves but doesn't select

Posted: Mon Aug 29, 2011 11:35 am
by malligt
In my own experience, this depends on what hardware that your laptop has installed in it. My touchpad would slide perfectly, but would not "click" or "tap".

After further investigation, I found that I had ALPS Glide Point/Stick Pointer installed as the hardware for my touchpad, and sadly,that LMDE would not work with it.

(Dell Inspiron 6000 laptop)

So check out your installed hardware...that might just be the problem.

Re: Touch pad moves but doesn't select

Posted: Mon Aug 29, 2011 11:58 am
by Gabriele_Angelo
malligt wrote:So check out your installed hardware...that might just be the problem.
That's what i thought at first, so i checked for drivers, but the problem was not there.
Looking in my mouse preferences i noticed that the cell that allows clicks with touch-pad was unchecked.

I'm feeling really really n00b right now. <.<

Anyway i thank you all especially xircon that tried to help me with that application.

(I still feel like a n00b)

How to write SOLVED on this topic?

Re: Touch pad moves but doesn't select

Posted: Tue Aug 30, 2011 7:29 am
by aljoriz
Edit your first post and add SOLVED to the subject line. :D

Re: Touch pad moves but doesn't select

Posted: Thu Nov 29, 2012 7:21 am
by jimod4343
aljoriz wrote:To activate "click on tap" for your touchpad,
Goto the terminal type

Code: Select all

 sudo gedit /usr/share/X11/xorg.conf.d/50-synaptics.conf
and replace the content of the file with the following:

Code: Select all

Section "InputClass"
Identifier "touchpad catchall"
Driver "synaptics"
MatchIsTouchpad "on"
Option "TapButton1" "1"
Option "VertEdgeScroll" "1"
EndSection


Worked perfectly for me on my Acer Aspire 5741 Laptop. Now a happy camper - thanks. :D

Re: [SOLVED]Touch pad moves but doesn't select

Posted: Wed Jun 12, 2013 3:39 pm
by xircon
@ David G - https://www.dropbox.com/s/q5h63qgmt8kk4m3/scgui.zip

This is a link to the free pascal source, needs lazarus to open.

HTH

Steve

Re: [SOLVED]Touch pad moves but doesn't select

Posted: Tue Dec 24, 2013 1:06 pm
by puigpuig
My touchpad stopped to work properly: it moved the pointer but the clicks didn't work from the touchpad...

The problem has been solved just by tiping in a terminal window:

Code: Select all

synclient TapButton1=1
BUT the problem is that after restart, you have again the same problem: the topuchpad does not accept clicks.

I've found in another Forum a solution:

just add in the Startup Applications an item as:

Code: Select all

bash -c 'sleep 10; synclient TapButton1=1 TapButton2=3 TapButton3=2'
In that way, after waiting for 10 seconds, it will activate the TapButton1.

It works for me with a Linux Mint.