Ubuntu – Focaltech touchpad. Couldn’t find synaptics properties.

focaltechmousemulti-touchtouchpad

I have a problem with my touchpad; I can't scroll down with 2 fingers and I don't know why. I have searched on Google about my problem and I've found some answers but none of them don't work for me.
One solution I found was to go in System Settings -> Mouse & Touchpad -> Touchpad and check the Two-finger scrolling, but I don't have that option.

Touchpad Settings

Another solution was to try to reinstall, which also didn't work. Yet another solution was to go in Ubuntu Software Center, type synaptic and install the Synaptic Package Manager but that didn't work, either.

Installing Synaptic through the Software Center

Output of "xinput; dmesg | grep pnp"

What can I do to be able to scroll with two fingers?

Best Answer

You have a Focaltech touchpad. The driver can be installed by running in terminal

sudo add-apt-repository ppa:hanipouspilot/focaltech-dkms
sudo apt-get update
sudo apt-get install focaltech-dkms

You can run

 sudo modprobe -r psmouse
 sudo modprobe psmouse

to get it work immediately, or just reboot.

If you have 14.04, then you will have to reboot, because new kernel will be installed.

UPDATE: These touchpads are now supported by the 4.2+ kernels. The kernel can be installed by

sudo apt-get install linux-generic-lts-xenial

The Focaltech driver from the PPA should be removed.

I removed the PPA, because many people try to install the Focaltech driver for other touchpads!

I have no Idea why they think they have a Focaltech touchpad.

This is not a generic answer for all touchpad problems!!!

Related Question