Meu Toshiba U400 tem o mesmo problema. Mesmo instalar o gpointing-device-settings não funcionou, embora pelo menos a opção para habilitá-lo não estivesse cinza.
No final, encontrei esta postagem no fórum , que destacou este pequeno script de shell:
#!/bin/bash
#
# list of synaptics device properties http://www.x.org/archive/X11R7.5/doc/man/man4/synaptics.4.html#sect4
# list current synaptics device properties: xinput list-props '"AlpsPS/2 ALPS GlidePoint"'
#
sleep 5 #added delay...
xinput --set-prop --type=int --format=32 "AlpsPS/2 ALPS GlidePoint" "Synaptics Two-Finger Pressure" 125
xinput --set-prop --type=int --format=32 "AlpsPS/2 ALPS GlidePoint" "Synaptics Two-Finger Width" 0 # Below width 1 finger touch, above width simulate 2 finger touch. - value=pad-pixels
xinput --set-prop --type=int --format=8 "AlpsPS/2 ALPS GlidePoint" "Synaptics Two-Finger Scrolling" 1 0 # vertical scrolling, horizontal scrolling - values: 0=disable 1=enable
exit
Funciona para alguns modelos, mas não para outros. Boa sorte.