• Willkommen im Linux Club - dem deutschsprachigen Supportforum für GNU/Linux. Registriere dich kostenlos, um alle Inhalte zu sehen und Fragen zu stellen.

Touchpad Einstellungen?

B@llou

Newbie
Moin

Gibt es irgendwie eine Möglichkeit das Touchpad zu konfigurieren? Es regiert mir nämlich zu empfindlich auf klicks die ich übers TP ausführe oder kann man diese Funktion ganz ausschalten. Vielleicht gibt es ja auch ein paar Sachen zum experimentieren auf jedenfall so wie es jetzt ist gefällt mir das nicht und es macht eher Probleme.
 

derMani

Hacker
Klar gibt es das.
Welche Distribution und welche Desktopumgebung verwendest du? Was hast du genau für ein Touchpad im Notebook verbaut?

Ich vermute mal Synaptics, dazu siehe auch:

http://de.gentoo-wiki.com/Synaptics_Touchpad
 
OP
B

B@llou

Newbie
Ich glaube ich hab alles gefunden.
Also muss ich im endeffect nur die /etc/X11/xorg.conf bearbeiten.
Bei mir sieht das schon fast so aus, bis auf die Feinheiten fehlen

Section "InputDevice"
Driver "kbd"
Identifier "Keyboard[0]"
Option "Protocol" "Standard"
Option "XkbLayout" "de"
Option "XkbModel" "microsoftpro"
Option "XkbRules" "xfree86"
Option "XkbVariant" "nodeadkeys"
EndSection

Section "InputDevice"
Driver "synaptics"
Identifier "Mouse[1]"
Option "Buttons" "7"
Option "Device" "/dev/input/mice"
Option "Emulate3Buttons" "on"
Option "InputFashion" "Mouse"
Option "Name" "Synaptics;Touchpad"
Option "Protocol" "explorerps/2"
Option "SHMConfig" "on"
Option "Vendor" "Sysp"
Option "ZAxisMapping" "4 5"
EndSection

Section "InputDevice"
Driver "mouse"
Identifier "Mouse[3]"
Option "Buttons" "5"
Option "Device" "/dev/input/mice"
Option "Name" "ImPS/2 Generic Wheel Mouse"
Option "Protocol" "explorerps/2"
Option "Vendor" "Sysp"
Option "ZAxisMapping" "4 5"
EndSection
Section "InputDevice"
Driver "kbd"
Identifier "Keyboard[0]"
Option "Protocol" "Standard"
Option "XkbLayout" "de"
Option "XkbModel" "microsoftpro"
Option "XkbRules" "xfree86"
Option "XkbVariant" "nodeadkeys"
EndSection

Section "InputDevice"
Driver "synaptics"
Identifier "Mouse[1]"
Option "Buttons" "7"
Option "Device" "/dev/input/mice"
Option "Emulate3Buttons" "on"
Option "InputFashion" "Mouse"
Option "Name" "Synaptics;Touchpad"
Option "Protocol" "explorerps/2"
Option "SHMConfig" "on"
Option "Vendor" "Sysp"
Option "ZAxisMapping" "4 5"
EndSection

Section "InputDevice"
Driver "mouse"
Identifier "Mouse[3]"
Option "Buttons" "5"
Option "Device" "/dev/input/mice"
Option "Name" "ImPS/2 Generic Wheel Mouse"
Option "Protocol" "explorerps/2"
Option "Vendor" "Sysp"
Option "ZAxisMapping" "4 5"
EndSection
 

misiu

Moderator
Teammitglied
Bevor du diese Datei bearbeitest, erstelle erst eine Sicherungskopie.
Schon bei einem fehlendem Zeichen würde deine grafische Oberfläche
nicht mehr starten.
Vielleicht hilft dir auch das weiter:
http://packman.links2linux.de/package/ksynaptics

MfG
misiu
 

derMani

Hacker
so weit ich weiß wird ksynaptics nicht mehr offiziell unterstützt...

siehe dazu:
http://www.kde-apps.org/content/show.php?content=17286

Das Programm macht bei mir leider einige Probleme :) hoffe da kommt demnächst wieder was brauchbares!

Alternativ wird im oben genannten Link auf

http://qsynaptics.sourceforge.net/

verwiesen
 

konnman

Newbie
Ich habe ein Dell Inspiron 6400
auf dem läuft OpenSuse 10.3 mit Gnome

Ich habe immer den Fehler:
“Can’t access shared memory area. SHMConfig disabled?”
bekommen.

Mit folgenden Einstellungen konnte ich mein Touchpad endlich deaktivieren:

Section in der etc/X11/xorg.conf:

Section "InputDevice"
Driver "synaptics"
Identifier "Mouse[3]"
Option "Device" "/dev/input/mice"
Option "Emulate3Buttons" "on"
Option "Name" "Touchpad"
Option "SHMConfig" "on"
Option "Vendor" "Synaptics"
Option "ZAxisMapping" "4 5"
EndSection

xxxx Nur zur Info
xxxx Es ist in der xorg.conf LEDIGLICH nur noch ZWEI ANDERE Section "InputDevice" !!!
xxxx Einmal die Tastatur:
xxxx
xxxx Section "InputDevice"
xxxx Driver "kbd"
xxxx Identifier "Keyboard[0]"
xxxx Option "Protocol" "Standard"
xxxx Option "XkbLayout" "de"
xxxx Option "XkbModel" "microsoftpro"
xxxx Option "XkbRules" "xfree86"
xxxx Option "XkbVariant" "nodeadkeys"
xxxx EndSection
xxxx
xxxx Und eben noch meine Maus:
xxxx
xxxx Section "InputDevice"
xxxx Driver "mouse"
xxxx Identifier "Mouse[1]"
xxxx Option "Buttons" "5"
xxxx Option "Device" "/dev/input/mice"
xxxx Option "Name" "Logitech M-BJ69 Optical Wheel Mouse"
xxxx Option "Protocol" "explorerps/2"
xxxx Option "Vendor" "Sysp"
xxxx Option "ZAxisMapping" "4 5"
xxxx EndSection


Installierte Software:

gsynaptics
gsynaptics-lang
libsynaptics
x11-input-synaptics
yast2-mcs-plugin


Nun noch einen Neustart.

Im Kontrollzentrum auf GSynaptics-Touchpad klicken

Enable Touchpad deaktivieren

Fertig.

Evtl. kannst Du das GSynaptics auch im KDE verwenden?
 
Oben