Wie kommt Ubuntu auf die Standardeinstellungen für Synaptics? Ich habe Ubuntu Netbook 10.10 auf einem Eeepc 900 installiert. Standardmäßig war TapButton2 auf 3 und TapButton3 auf 2 eingestellt.
Ich habe verschiedene benutzerdefinierte Synaptics-Einstellungen, die ich als systemweite Standardeinstellungen verwenden möchte. Im Moment benutze ich ein Skript mit synclient Befehlen, die ich bei jedem Booten oder Wake ausführen muss. Pita-Brot. Früher ging alles in xorg.conf ... was nicht mehr existiert. Ich versuche den neuen Weg zu lernen, der anscheinend bei conf files liegt /usr/share/X11/xorg.conf.d
.
Ich habe bearbeitet
/usr/share/X11/xorg.conf.d/50-synaptics.conf
, um wie folgt auszusehen:Abschnitt "InputClass" Kennung "touchpad catchall" Treiber "Synaptics" MatchIsTouchpad "ein" MatchDevicePath "/ dev / input / event *" Option "LockedDrags" "1" Option "TapButton2" "2" Option "TapButton3" "3" EndSection
Ich habe versucht, den Touchpad-Bereich von
/usr/share/X11/xorg.conf.d/10-evdev.conf
, no cigar zu ändern.Versuchte die gleichen 50-synaptics.conf- und 10-evdev.conf-Dateien in einem
/etc/X11/xorg.conf.d
Abschnitt.Es wurde versucht,
/etc/X11/xorg.conf
mit dem obigen Abschnitt InputClass eine zu erstellen. Keine Zigarre.
Ich mache immer zuerst die alte Änderung rückgängig, erstelle die neue und starte eine neue X-Sitzung zum Testen ( startx -- :2
). Etwas , das ich interessant finde ist , dass nach jedem Schalter auf den virtuellen Terminal ( ctrl+ alt+ F1) meine synaptics Einstellungen verloren gehen. Von Bedeutung? Ich weiß es nicht.
Dies sind die synclient-Befehle, die ich ausführe:
jake @ clyde: ~ $ cat bin / synset.sh #! / bin / bash synclient TapButton2 = 2 synclient TapButton3 = 3 synclient LockedDrags = 1
Folgendes ist in / dev / input enthalten:
jake@clyde:/dev/input$ ls
by-path/ event0 event1 event2 event3 event4 event5 event6 event7 mice mouse0
jake@clyde:/dev/input$ ls -l by-path/
total 0
lrwxrwxrwx 1 root root 9 2011-02-18 15:43 platform-eeepc-event -> ../event6
lrwxrwxrwx 1 root root 9 2011-02-18 15:43 platform-i8042-serio-0-event-kbd -> ../event4
lrwxrwxrwx 1 root root 9 2011-02-18 15:43 platform-i8042-serio-1-event-mouse -> ../event7
lrwxrwxrwx 1 root root 9 2011-02-18 15:43 platform-i8042-serio-1-mouse -> ../mouse0
Das X-Protokoll ist ziemlich lang, aber hier ist eine Ausgabe. Wenn das Ganze nützlich wäre, wo ist ein guter Ort, um es hochzuladen?
jake@clyde:/var/log$ egrep "synaptics|touchpad" Xorg.0.log
[ 16.707] (II) config/udev: Adding input device ETPS/2 Elantech Touchpad (/dev/input/event7)
[ 16.707] (**) ETPS/2 Elantech Touchpad: Applying InputClass "evdev touchpad catchall"
[ 16.707] (**) ETPS/2 Elantech Touchpad: Applying InputClass "touchpad catchall"
[ 16.707] (II) LoadModule: "synaptics"
[ 16.707] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
[ 16.707] (II) Module synaptics: vendor="X.Org Foundation"
[ 16.708] (II) Synaptics touchpad driver version 1.2.2
[ 16.708] (II) ETPS/2 Elantech Touchpad: x-axis range 8 - 1144
[ 16.708] (II) ETPS/2 Elantech Touchpad: y-axis range 8 - 760
[ 16.708] (II) ETPS/2 Elantech Touchpad: device does not report pressure, will use touch data.
[ 16.708] (II) ETPS/2 Elantech Touchpad: finger width range 0 - 0
[ 16.708] (II) ETPS/2 Elantech Touchpad: buttons: left right double triple
[ 16.708] (--) ETPS/2 Elantech Touchpad: touchpad found
[ 16.708] (**) ETPS/2 Elantech Touchpad: always reports core events
[ 16.708] (II) XINPUT: Adding extended input device "ETPS/2 Elantech Touchpad" (type: TOUCHPAD)
[ 16.708] (**) ETPS/2 Elantech Touchpad: (accel) keeping acceleration scheme 1
[ 16.709] (**) ETPS/2 Elantech Touchpad: (accel) acceleration profile 0
[ 16.709] (**) ETPS/2 Elantech Touchpad: (accel) acceleration factor: 2.000
[ 16.709] (**) ETPS/2 Elantech Touchpad: (accel) acceleration threshold: 4
[ 16.709] (--) ETPS/2 Elantech Touchpad: touchpad found
[ 16.710] (II) config/udev: Adding input device ETPS/2 Elantech Touchpad (/dev/input/mouse0)
[ 15516.377] (--) ETPS/2 Elantech Touchpad: touchpad found
[ 44215.009] (--) ETPS/2 Elantech Touchpad: touchpad found
[ 44358.733] (--) ETPS/2 Elantech Touchpad: touchpad found
[ 44414.761] (--) ETPS/2 Elantech Touchpad: touchpad found
[ 44515.817] (--) ETPS/2 Elantech Touchpad: touchpad found
Es sieht so aus, als ob dies im aktuellen Ubuntus (12.04, 12.10) ungelöst bleibt.