3

I am using ASUS UX303 LN laptop, and ubuntu 14.04 Gnome is installed on it. I cant turn on two finger scrolling on it. Its not even shown in the settings. Can someone help ? I have tried these commands, but didnt work

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

Output for xinput; dmesg | grep pnp

ebin@Ebin-UX303LN:~$ xinput; dmesg | grep pnp
⎡ Virtual core pointer                      id=2    [master pointer  (3)]
⎜   ↳ Virtual core XTEST pointer                id=4    [slave  pointer  (2)]
⎜   ↳ Logitech USB Receiver                     id=10   [slave  pointer  (2)]
⎜   ↳ Logitech USB Receiver                     id=11   [slave  pointer  (2)]
⎜   ↳ PS/2 Logitech Wheel Mouse                 id=15   [slave  pointer  (2)]
⎣ Virtual core keyboard                     id=3    [master keyboard (2)]
    ↳ Virtual core XTEST keyboard               id=5    [slave  keyboard (3)]
    ↳ Power Button                              id=6    [slave  keyboard (3)]
    ↳ Video Bus                                 id=7    [slave  keyboard (3)]
    ↳ Video Bus                                 id=8    [slave  keyboard (3)]
    ↳ Sleep Button                              id=9    [slave  keyboard (3)]
    ↳ USB2.0 UVC HD Webcam                      id=12   [slave  keyboard (3)]
    ↳ Asus WMI hotkeys                          id=13   [slave  keyboard (3)]
    ↳ AT Translated Set 2 keyboard              id=14   [slave  keyboard (3)]
[    0.266621] pnp: PnP ACPI init
[    0.267063] pnp 00:02: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.267303] pnp 00:06: Plug and Play ACPI device, IDs FLT0101 SYN0a00 SYN0002 PNP0f03 PNP0f13 PNP0f12 (active)
[    0.267350] pnp 00:07: Plug and Play ACPI device, IDs ATK3001 PNP030b (active)
[    0.268431] pnp: PnP ACPI: found 10 devices

output for uname -r; dkms status

ebin@Ebin-UX303LN:~$ uname -r; dkms status
3.16.0-41-generic
Pilot6
  • 92,041

1 Answers1

2

You have a Focaltech touchpad and the driver from my ppa should work.

But it looks like I made a small mistake and did not add dependency of linux-generic-lts-vivid in the last version for trusty.

The driver did not install for your current kernel.

You need to run

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

and reboot. That will upgrade your kernel and the driver will work.

I fixed that issue in ppa. Now it will force to install linux-generic-lts-vivid for Ubuntu 14.04.

Now version 1.5~trusty1 is building. It will be the last version in that ppa, because this driver is in kernel 4.0 and with my finger width patch in 4.2.

Focaltech touchpads will work in Ubuntu 15.10 out of the box.

Pilot6
  • 92,041