Ubuntu – Disabilitare il touchpad

3 05 2007

Tempo fa volevo riuscire ad utilizzare il benedetto tasto di disabilitazione del touchpad!Questo tasto mi fungeva solo sotto Windows! Leggendo le varie guide in giro ho sempre trovato la stessa risposta “Installa gsynaptics”! Fatto, e mo? Il *pad continuava a fungere e a rompere mentre scrivevo! Però mi usciva un pop-up da gsynaptics “Add SHMConfig al xorg”! MMM

Per non tirarla per le lunghe, ho aggiunto una sezione all’xorg

Prima dell’aggiunta

Section "InputDevice"
Identifier     "Configured Mouse"
Driver         "mouse"
Option         "CorePointer"
Option         "Device" "/dev/input/mice"
Option         "Protocol" "ExplorerPS/2"
Option         "ZAxisMapping" "4 5"
Option         "Emulate3Buttons" "true"
Option         "SHMConfig" "true"
EndSection

Dopo aggiunta

...
Section "InputDevice"
Identifier     "Configured Mouse"
Driver         "mouse"
Option         "CorePointer"
Option         "Device" "/dev/input/mice"
Option         "Protocol" "ExplorerPS/2"
Option         "ZAxisMapping" "4 5"
Option         "Emulate3Buttons" "true"
Option         "SHMConfig" "true"
EndSection

Section "InputDevice"
Identifier     "Synaptics Touchpad"
Driver         "synaptics"
Option         "SendCoreEvents" "true"
Option         "Device" "/dev/psaux"
Option         "Protocol" "auto-dev"
Option         "HorizScrollDelta" "0"
#Per abilitare gsynaptics
Option         "SHMConfig" "true"
EndSection
...

Ovviamente in ServerLayout ho dovuto aggiungere “Synaptics Touchpad”!

Salvato il nuovo /etc/X11/xorg.conf e riavviato la macchina!

Dopo il riavvio sia il fantomatico tasto che il comando via software fungono! Ora sul mio portatile posso finalmente abilitare e disabilitare il pad!

Enjoy


Azioni

Information

Una risposta

24 12 2010
Gianluca

Come hai fatto?

Lascia un commento