You are not logged in.

#1 2010-06-10 11:53:33

artoale
Member
Registered: 2009-04-09
Posts: 14

Synaptics touchpad work in gdm, stop working under gnome

Hi everybody, after recent uptade my synaptics tuochped stop working:
I use gdm, and i can use touchpad without problem in the logon screen; after  a few second after login my touchpad stop working, during gnome init.

The mouse is under /dev/psaux and it work correctly for long time. (i've had this problem once some month ago, but  a simple reboot solved the problem )

this is my xorg.conf if it helps

Section "ServerLayout"
    Identifier     "Layout0"
    Screen      0  "Screen0"
    InputDevice    "Keyboard0" "CoreKeyboard"
    InputDevice    "SynapticsTouchpad"  "SendCoreEvents"

EndSection

Section "Files"
EndSection

Section "InputDevice"
   Identifier  "SynapticsTouchpad"
   Driver      "synaptics"
   Option      "AlwaysCore"        "true"  # send events to CorePointer
   #Option      "Device"            "/dev/input/mice"
   Option      "Device"            "/dev/psaux"
   Option      "Protocol"          "auto-dev"
   Option      "SHMConfig"         "true" # configurable at runtime? security risk
   Option      "LeftEdge"          "1700"  # x coord left
   Option      "RightEdge"         "5300"  # x coord right
   Option      "TopEdge"           "1700"  # y coord top
   Option      "BottomEdge"        "4200"  # y coord bottom
   Option      "FingerLow"         "25"    # pressure below this level triggers release
   Option      "FingerHigh"        "30"    # pressure above this level triggers touch
   Option      "MaxTapTime"        "180"   # max time in ms for detecting tap
   Option      "VertEdgeScroll"    "true"  # enable vertical scroll zone
   Option      "HorizEdgeScroll"   "true"  # enable horizontal scroll zone
   Option      "CornerCoasting"    "true"  # enable continuous scroll with finger in corner
   Option      "CoastingSpeed"     "0.30"  # corner coasting speed
   Option      "VertScrollDelta"   "100"   # edge-to-edge scroll distance of the vertical scroll
   Option      "HorizScrollDelta"  "100"   # edge-to-edge scroll distance of the horizontal scroll
   Option      "MinSpeed"          "0.10"  # speed factor for low pointer movement
   Option      "MaxSpeed"          "0.60"  # maximum speed factor for fast pointer movement
   Option      "AccelFactor"       "0.0020"    # acceleration factor for normal pointer movements
   Option      "VertTwoFingerScroll"   "true"  # vertical scroll anywhere with two fingers
   Option      "HorizTwoFingerScroll"  "true"  # horizontal scroll anywhere with two fingers
   Option      "TapButton1" "1"
   Option      "TapButton2" "2"
   Option      "TapButton3" "3"
EndSection

Section "InputDevice"
    # generated from default
    Identifier     "Mouse0"
    Driver         "mouse"
    Option         "Protocol" "auto"
    Option         "Device" "/dev/psaux"
    Option         "Emulate3Buttons" "no"
    Option         "ZAxisMapping" "4 5"
EndSection

Section "InputDevice"
    # generated from default
    Identifier     "Keyboard0"
    Driver         "kbd"
EndSection

Section "Monitor"
    Identifier     "Monitor0"
    VendorName     "Unknown"
    ModelName      "Unknown"
    HorizSync       28.0 - 33.0
    VertRefresh     43.0 - 72.0
    Option         "DPMS"
EndSection

Section "Device"
    Identifier     "Device0"
    Driver         "nvidia"
    VendorName     "NVIDIA Corporation"
EndSection

Section "Screen"
    Identifier     "Screen0"
    Device         "Device0"
    Monitor        "Monitor0"
    DefaultDepth    24
    SubSection     "Display"
        Depth       24
    EndSubSection
EndSection

thanks!

Offline

#2 2010-06-10 11:59:01

wonder
Developer
From: Bucharest, Romania
Registered: 2006-07-05
Posts: 5,941
Website

Re: Synaptics touchpad work in gdm, stop working under gnome

gnome once logged is overwriting some of the xorg settings for touchpad. to configure use System->Preferences->Mouse and then TouchPad tab

Last edited by wonder (2010-06-10 11:59:57)


Give what you have. To someone, it may be better than you dare to think.

Offline

#3 2010-06-10 13:09:09

artoale
Member
Registered: 2009-04-09
Posts: 14

Re: Synaptics touchpad work in gdm, stop working under gnome

I've alreardy tried it....where this gnome config are stored?

Offline

#4 2010-06-13 03:33:24

Sakura
Member
Registered: 2010-05-06
Posts: 20

Re: Synaptics touchpad work in gdm, stop working under gnome

artoale wrote:

I've alreardy tried it....where this gnome config are stored?

You're looking for the gconf-editor command.

Offline

#5 2010-06-23 22:39:14

qsc
Member
Registered: 2010-06-17
Posts: 2

Re: Synaptics touchpad work in gdm, stop working under gnome

I too am having the same problem. This only seems to happen after I connect to a projector by the VGA port on my Lenovo T500. I use the display port to connect to a 30" apple cinema display and have no issues. Have not had much luck in finding what changes in the gnome config when this problem arises.

I am looking forward to anyone being able to explain what is actually changing and why. WIll continue to dig into this and post a workaround if I find one.

Offline

#6 2010-06-23 23:38:24

qsc
Member
Registered: 2010-06-17
Posts: 2

Re: Synaptics touchpad work in gdm, stop working under gnome

Not sure if this fixes your issue, worked in the case that I posted above.

Remove psmouse kernel module and reload as follows:

modprobe -r psmouse
modprobe psmouse proto=imps

This should at least get the mouse working until a better answer comes along, I have written a script that runs this after I login to gnome. YMMV.

Last edited by qsc (2010-06-23 23:40:06)

Offline

#7 2010-06-26 19:43:44

Kosmonavt
Member
Registered: 2010-02-15
Posts: 100

Re: Synaptics touchpad work in gdm, stop working under gnome

Do you have gsynaptics installed? If yes, put gsynaptics-init in autostart. If tapping isn't working, check settings in gsynaptics.

Offline

#8 2010-07-04 12:18:18

Cape
Member
From: Mogliano Veneto, Italy
Registered: 2008-11-15
Posts: 105

Re: Synaptics touchpad work in gdm, stop working under gnome

mmm...  I fixed this problem by enabling trackpads in gconf: "/desktop/gnome/peripherals/touchpad/touchpad_enabled".

Offline

#9 2010-09-28 20:30:18

innusius
Member
From: Slovakia
Registered: 2008-03-19
Posts: 16
Website

Re: Synaptics touchpad work in gdm, stop working under gnome

Thanx Cape smile

Offline

Board footer

Powered by FluxBB