Ubuntu – Touchpad tap stopped working

16.04mousemulti-touchsynapticstouchpad

Touchpad tap stopped working on Ubuntu 16.04
I installed genome 3.2 and then removed it, and convert back to unity.
Two finger scrolling is working.
I don't see touchpad settings in settings.
I've tried this solution:

synclient TapButton1=1 TapButton2=3 TapButton3=2

But it says that synaptics driver is not loaded

Couldn't find synaptics properties. No synaptics driver loaded?

How to get touchpad taps working again?

Best Answer

It looks like you installed libinput. You have two options:

  1. Enable tapping with libinput. It can be done by adding

    Option "Tapping" "true"
    

to the touchpad section of /usr/share/X11/xorg.conf.d/90-libinput.conf.

Tapping in libinput is disabled by defualt.

  1. Remove libinput. That will revert to xorg-synaptics user space driver. It can be done by

    sudo apt remove xserver-xorg-input-libinput
    

libinput is a new user space driver that will replace xorg-synaptics in new distro versions. I do not recommend to remove it.