Tengo instalado Ubuntu 16.04.6 LTS y el sistema solo me permite desplazarme y hacer click tocando el touchpad, pero no pulsando las áreas de la base izquierda y derecha. Anteriormente, habiendo instalado Ubuntu 18.04.3 LTS, lo pude solucionar instalando el paquete gnome-tweak-tool, ejecutando la herramienta y seleccionando: Teclado y ratón > Método de pulsación > Areas.
Ahora hago lo mismo pero no funciona...
Esta es la salida del comando "Xinput list":
Citarlinux@laptop:~$ xinput list
⎡ Virtual core pointer id=2 [master pointer (3)]
⎜ ↳ Virtual core XTEST pointer id=4 [slave pointer (2)]
⎜ ↳ SYNA3602:00 0911:5288 Touchpad id=9 [slave pointer (2)]
⎣ Virtual core keyboard id=3 [master keyboard (2)]
↳ Virtual core XTEST keyboard id=5 [slave keyboard (3)]
↳ Video Bus id=6 [slave keyboard (3)]
↳ Power Button id=7 [slave keyboard (3)]
↳ USB2.0 PC CAMERA: USB2.0 PC CAM id=8 [slave keyboard (3)]
↳ Intel HID events id=10 [slave keyboard (3)]
↳ Intel HID 5 button array id=11 [slave keyboard (3)]
↳ AT Translated Set 2 keyboard id=12 [slave keyboard (3)]
Esta es la salida del comando "xinput list-props 9".
Citar
linux@laptop:~$ xinput list-props 9
Device 'SYNA3602:00 0911:5288 Touchpad':
Device Enabled (143): 1
Coordinate Transformation Matrix (145): 1.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 1.000000
Device Accel Profile (268): 1
Device Accel Constant Deceleration (269): 2.500000
Device Accel Adaptive Deceleration (270): 1.000000
Device Accel Velocity Scaling (271): 12.500000
Synaptics Edges (272): 65, 1579, 56, 988
Synaptics Finger (273): 25, 30, 0
Synaptics Tap Time (274): 180
Synaptics Tap Move (275): 85
Synaptics Tap Durations (276): 180, 180, 100
Synaptics ClickPad (277): 1
Synaptics Middle Button Timeout (278): 0
Synaptics Two-Finger Pressure (279): 282
Synaptics Two-Finger Width (280): 7
Synaptics Scrolling Distance (281): 38, 38
Synaptics Edge Scrolling (282): 0, 0, 0
Synaptics Two-Finger Scrolling (283): 1, 1
Synaptics Move Speed (284): 1.000000, 1.750000, 0.102722, 0.000000
Synaptics Off (285): 2
Synaptics Locked Drags (286): 0
Synaptics Locked Drags Timeout (287): 5000
Synaptics Tap Action (288): 2, 3, 0, 0, 1, 3, 0
Synaptics Click Action (289): 1, 1, 0
Synaptics Circular Scrolling (290): 0
Synaptics Circular Scrolling Distance (291): 0.100000
Synaptics Circular Scrolling Trigger (292): 0
Synaptics Circular Pad (293): 0
Synaptics Palm Detection (294): 0
Synaptics Palm Dimensions (295): 10, 200
Synaptics Coasting Speed (296): 20.000000, 50.000000
Synaptics Pressure Motion (297): 30, 160
Synaptics Pressure Motion Factor (298): 1.000000, 1.000000
Synaptics Resolution Detect (299): 1
Synaptics Grab Event Device (300): 0
Synaptics Gestures (301): 1
Synaptics Capabilities (302): 1, 0, 1, 1, 1, 0, 0
Synaptics Pad Resolution (303): 16, 16
Synaptics Area (304): 0, 0, 0, 0
Synaptics Soft Button Areas (305): 822, 0, 856, 0, 0, 0, 0, 0
Synaptics Noise Cancellation (306): 9, 9
Device Product ID (263): 2321, 21128
Device Node (264): "/dev/input/event13"
¿Alguna idea de qué puede estar pasando? No se como configurarlo.
PD: Lo más sospechoso que veo es la línea:
Synaptics Area (304): 0, 0, 0, 0
He encontrado este manual de Arch que para el caso es lo mismo:
https://wiki.archlinux.org/index.php/Touchpad_Synaptics_(Espa%C3%B1ol) (https://wiki.archlinux.org/index.php/Touchpad_Synaptics_(Espa%C3%B1ol))
Citar
Panel táctil sin botones (o ClickPads)
Algunos ordenadores portátiles tienen un tipo especial de panel táctil que tiene los botones del ratón como parte de la placa de seguimiento, en vez de ser botones externos. Por defecto, el área del botón se detecta como una pulsación a la izquierda, con el resultado de que el segundo botón es de hecho inutilizable y que el arrastre no va a funcionar. Anteriormente, el soporte para tales dispositivos se logró mediante el uso de parches de terceros, pero desde la versión 1.6.0 el controlador Synaptics tiene soporte multitouch nativo (usando la biblioteca mtdev). Puede mirar el controlador xf86-input-mtrackAUR para un mejor soporte multitoque.
Para habilitar otras pulsaciones modifique la sección touchpad en /etc/X11/xorg.conf.d/50-synaptics.conf.
Mi Touch pad es uno de esos paneles táctiles sin botones.
Este es mi archivo "70-synaptics.conf":
CitarSection "InputClass"
Identifier "touchpad catchall"
Driver "synaptics"
MatchIsTouchpad "on"
# This option is recommend on all Linux systems using evdev, but cannot be
# enabled by default. See the following link for details:
# http://who-t.blogspot.com/2010/11/how-to-ignore-configuration-errors.html
MatchDevicePath "/dev/input/event*"
EndSection
Section "InputClass"
Identifier "touchpad ignore duplicates"
MatchIsTouchpad "on"
MatchOS "Linux"
MatchDevicePath "/dev/input/mouse*"
Option "Ignore" "on"
EndSection
# This option enables the bottom right corner to be a right button on clickpads
# and the right and middle top areas to be right / middle buttons on clickpads
# with a top button area.
# This option is only interpreted by clickpads.
Section "InputClass"
Identifier "Default clickpad buttons"
MatchDriver "synaptics"
Option "SoftButtonAreas" "50% 0 82% 0 0 0 0 0"
Option "SecondarySoftButtonAreas" "58% 0 0 15% 42% 58% 0 15%"
EndSection
# This option disables software buttons on Apple touchpads.
# This option is only interpreted by clickpads.
Section "InputClass"
Identifier "Disable clickpad buttons on Apple touchpads"
MatchProduct "Apple|bcm5974"
MatchDriver "synaptics"
Option "SoftButtonAreas" "0 0 0 0 0 0 0 0"
EndSection