mouse pointer not working

Amit Rana amit.rana at gmail.com
Fri Nov 16 12:42:05 UTC 2007


Got it to work, solution was mentioned in the link itself. Changed
from synaptics to mouse.

changed xorg.conf from

Section "ServerLayout"
        Identifier     "Default Layout"
        Screen      0  "Screen0" 0 0
        InputDevice    "Keyboard0" "CoreKeyboard"
        InputDevice    "Synaptics" "CorePointer"
EndSection

Section "InputDevice"
        Identifier  "Synaptics"
        Driver      "synaptics"
        Option      "Device" "/dev/input/mice"
        Option     "Protocol" "auto-dev"
        Option      "Emulate3Buttons" "yes"
EndSection


to

Section "ServerLayout"
        Identifier     "Default Layout"
        Screen      0  "Screen0" 0 0
        InputDevice    "Keyboard0" "CoreKeyboard"
        InputDevice    "Mouse" "CorePointer"
EndSection

Section "InputDevice"
        Identifier  "Mouse"
        Driver      "mouse"
        Option      "Device" "/dev/input/mice"
        Option      "Emulate3Buttons" "yes"
EndSection




More information about the test mailing list