Al instalar Debian Wheezy en un Samsung NC10, no me iba el click con el dedo sobre el touchpad ni el scroll en la barra lateral.
Para habilitarlo, tuve que cambiar varios parámetros con synclient
. Como estos cambios se pierden al reiniciar, tuve que modificar un archivo.
Tenemos que hacer lo siguiente:
mkdir -p /etc/X11/xorg.conf.d
cp /usr/share/X11/xorg.conf.d/50-synaptics.conf /etc/X11/xorg.conf.d/
cp /usr/share/X11/xorg.conf.d/50-synaptics.conf /etc/X11/xorg.conf.d/
Editamos el fichero y añadimos varios Option
en el Driver synaptics, quedando:
Section "InputClass"
Identifier "touchpad catchall"
Driver "synaptics"
MatchIsTouchpad "on"
Option "ClickPad" "0"
Option "TapButton1" "1"
Option "VertEdgeScroll" "1"
EndSection
Identifier "touchpad catchall"
Driver "synaptics"
MatchIsTouchpad "on"
Option "ClickPad" "0"
Option "TapButton1" "1"
Option "VertEdgeScroll" "1"
EndSection
Más información: https://wiki.archlinux.org/index.php/Touchpad_Synaptics