Finding out the name of the touchpad on the system.
Querying the device capabilities:
Code:
$ xinput list-props "SynPS/2 Synaptics TouchPad" | grep Capabilities
Synaptics Capabilities (309): 1, 0, 1, 0, 0, 1, 1
From left to right, this shows:
(1) device has a physical left button
(0) device does not have a physical middle button
(1) device has a physical right button
(0) device does not support two-finger detection
(0) device does not support three-finger detection
(1) device can configure vertical resolution
(1) device can configure horizontal resolution
Use xinput list-props "SynPS/2 Synaptics TouchPad" to list all device properties.
This shows every configuration available, if it shows you
If it shows you this:
Code:
$ synclient -l
Couldn't find synaptics properties. No synaptics driver loaded?
Then I would try to see if any module is present, if not I would find out what the module was for my notebook and try to load it to see if it starts working, that would be my plan.
If it is present, then it could be a misconfiguration which xinput and synclient could show you and after test it with evtest.
Have you tried poking around the configurations that it shows you and then trying evtest?
I took a look at the lspci, lsmod, messages and dmesg and didn't see anything related to the touchpad, it fail for some reason to load modules for your NVidia graphics card but I didn't see if it loaded something else that worked, it was not my focus.
How to find drivers for Linux?
http://cateee.net/lkddb/ (LKDDb: Linux Kernel Driver DataBase) I try there first.
When I conducted the search on the log files I looked for anything saying "synaptics" or "touchpad" and even "touch" but I found nothing than I looked the the xorg log to see all the EE (errors) and WW (warnings)