Scheduled Maintenance: We are aware of an issue with Google, AOL, and Yahoo services as email providers which are blocking new registrations. We are trying to fix the issue and we have several internal and external support tickets in process to resolve the issue. Please see: viewtopic.php?t=158230

 

 

 

[SOLVED] how to activate multitap on Debian 9.7

Linux Kernel, Network, and Services configuration.
Post Reply
Message
Author
User111
Posts: 16
Joined: 2019-01-25 18:49

[SOLVED] how to activate multitap on Debian 9.7

#1 Post by User111 »

Yesterday I followed this guide https://wiki.debian.org/SynapticsTouchp ... Stretch.22 and after I created /etc/X11/xorg.conf.d/40-libinput.conf with these lines

Code: Select all

Section "InputClass"
        Identifier "libinput touchpad catchall"
        MatchIsTouchpad "on"
        MatchDevicePath "/dev/input/event*"
        Driver "libinput"
        Option "Tapping" "on"
EndSection' 
the system, after reboot didn't start the x server. Practically after the command:

Code: Select all

$ systemctl restart lightdm
I couldn't log in with graphical front end. Why? How can I activate the multitouch on my elantech? Thanks
Last edited by User111 on 2019-01-30 14:02, edited 1 time in total.

User avatar
ruwolf
Posts: 641
Joined: 2008-02-18 05:04
Location: Banovce nad Bebravou
Has thanked: 40 times
Been thanked: 29 times

Re: how to activate multitap on Debian 9.7

#2 Post by ruwolf »

Which error messages does the restart write?

BTW: Try to look at this: wiki.Gentoo.org/wiki/Libinput#Troubleshooting.

User avatar
Head_on_a_Stick
Posts: 14114
Joined: 2014-06-01 17:46
Location: London, England
Has thanked: 81 times
Been thanked: 133 times

Re: how to activate multitap on Debian 9.7

#3 Post by Head_on_a_Stick »

User111 wrote:I created /etc/X11/xorg.conf.d/40-libinput.conf with these lines
Probably best to copy /usr/share/X11/xorg.conf.d/40-libinput.conf to /etc/X11/xorg.conf.d/40-libinput.conf and edit the file to your liking. There are several other stanzas relating to other input devices in that file and their lack may be causing your problem.

The Xorg log would show what is actually happening though, as noted by ruwolf.
deadbang

User avatar
bw123
Posts: 4015
Joined: 2011-05-09 06:02
Has thanked: 1 time
Been thanked: 28 times

Re: how to activate multitap on Debian 9.7

#4 Post by bw123 »

typo?
EndSection'
resigned by AI ChatGPT

User111
Posts: 16
Joined: 2019-01-25 18:49

Re: how to activate multitap on Debian 9.7

#5 Post by User111 »

ruwolf wrote:Which error messages does the restart write?

BTW: Try to look at this: wiki.Gentoo.org/wiki/Libinput#Troubleshooting.
Something like that

Code: Select all

..Data incomplete in file /etc/X11/xorg.conf.d/xkb-defaults.conf
        Undefined Screen "Screen1" referenced by ServerLayout "DefaultLayout".
(EE)
Fatal server error:
(EE) no screens found(EE)
(EE)
Please consult the The X.Org Foundation support
         at http://wiki.x.org
 for help...

I don't remember exatcly, but the screen didn't found by xserver.

User111
Posts: 16
Joined: 2019-01-25 18:49

Re: how to activate multitap on Debian 9.7

#6 Post by User111 »

Only when I removed the directory and file inside it, startx has worked with no problem. How to enable multitouch?

User avatar
Head_on_a_Stick
Posts: 14114
Joined: 2014-06-01 17:46
Location: London, England
Has thanked: 81 times
Been thanked: 133 times

Re: how to activate multitap on Debian 9.7

#7 Post by Head_on_a_Stick »

User111 wrote:

Code: Select all

..Data incomplete in file /etc/X11/xorg.conf.d/xkb-defaults.conf
So the problem was in that file then, it seems.

Follow my advice in my last post or recreate your own 40-libinput.conf file without the typo noticed by eagle-eyes bw123.
deadbang

User111
Posts: 16
Joined: 2019-01-25 18:49

Re: [SOLVED] how to activate multitap on Debian 9.7

#8 Post by User111 »

I just edited my 40-libinput.conf file in this way:

Code: Select all

..Section "InputClass"
        Identifier "libinput touchpad catchall"
        MatchIsTouchpad "on"
        MatchDevicePath "/dev/input/event*"
        Driver "libinput"
        Option "Tapping" "on"
        Option "ClickMethod" "clickfinger"
        Option "TappingButtonMap" "lmr"
EndSection
..
and after rebooting xserver, the touchpad works fine.

User111
Posts: 16
Joined: 2019-01-25 18:49

Re: [SOLVED] how to activate multitap on Debian 9.7

#9 Post by User111 »

I have noticed that: every notebook has, on the touchpad, double buttons one for simulate left button and another for right button. Yesterday, the procedure which I follows doesn't permit to use both button on the touchpad:

- click left button > OK
- click right button > the system shows me command associated with left button

my laptop is Asus E406SA. How to resolve this?

User avatar
Head_on_a_Stick
Posts: 14114
Joined: 2014-06-01 17:46
Location: London, England
Has thanked: 81 times
Been thanked: 133 times

Re: [SOLVED] how to activate multitap on Debian 9.7

#10 Post by Head_on_a_Stick »

User111 wrote:How to resolve this?
Open a new thread for your problem, please don't hijack already solved threads.
deadbang

Post Reply