[SOLVED]Touch pad moves but doesn't select

Archived topics about LMDE 1 and LMDE 2
Locked
Gabriele_Angelo

[SOLVED]Touch pad moves but doesn't select

Post 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?
Last edited by LockBot on Wed Dec 28, 2022 7:16 am, edited 2 times in total.
Reason: Topic automatically closed 6 months after creation. New replies are no longer allowed.
aljoriz

Re: Touch pad moves but doesn't select

Post 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
Gabriele_Angelo

Re: Touch pad moves but doesn't select

Post 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.
xircon

Re: Touch pad moves but doesn't select

Post by xircon »

Try (from a terminal):

Code: Select all

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

Cheers

Steve
Gabriele_Angelo

Re: Touch pad moves but doesn't select

Post 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.
xircon

Re: Touch pad moves but doesn't select

Post by xircon »

Hmmmm, if the driver wasn't installed I would expect error messages, not the other way round.
aljoriz

Re: Touch pad moves but doesn't select

Post 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.
Gabriele_Angelo

Re: Touch pad moves but doesn't select

Post 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.
xircon

Re: Touch pad moves but doesn't select

Post 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.
Gabriele_Angelo

Re: Touch pad moves but doesn't select

Post 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.
xircon

Re: Touch pad moves but doesn't select

Post 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).
malligt
Level 4
Level 4
Posts: 269
Joined: Sat Sep 11, 2010 12:58 pm

Re: Touch pad moves but doesn't select

Post 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.
Gabriele_Angelo

Re: Touch pad moves but doesn't select

Post 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?
aljoriz

Re: Touch pad moves but doesn't select

Post by aljoriz »

Edit your first post and add SOLVED to the subject line. :D
jimod4343

Re: Touch pad moves but doesn't select

Post 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
xircon

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

Post 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
puigpuig
Level 1
Level 1
Posts: 6
Joined: Mon Aug 27, 2012 10:32 am

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

Post 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.
Locked

Return to “LMDE Archive”