Touchpad hiba Debianon

Szóval... van egy laptopom, amin a touchpadot lehetetlen használni. Ez azt jelenti, hogy húznám szegényt, és átugrik a képernyő átellenes sarkába, vagy sorra kattintgat random helyeken, miáltal egy csomó felesleges dolog megnyílik, vagy éppen bezáródik.
A gép előző tulajdonosa szerint működik a touchpad, tehát a hardverhibát zárjuk ki.

USB-egérrel (majdnem) tökéletes a dolog. (Ott a görgővel van csak gond, de az nem ide tartozik.)

Kérdés, hogy mi lehet vele, és hogyan lehet beállítani. Régen a "dpkg-reconfigure xserver-xorg" paranccsal lehetett próbálkozni egérbeállítással, most nem látok benne semmi egeres opciót.

Információk:
Rendszer: Debian Lenny (nem, etch-en sem volt már jó)
Laptop: Issam Smartbook, i8090C széria, i-MS2137 modell
"lspci -vvv": http://pastebin.com/m30a2c670

Ha kell még bármilyen infó, szóljatok! :-)

Köszi:
Marcell

Hozzászólások

Szerintem simán rossz egér drivert használsz. Kézzel ird át a xorg.conf-ba ps2-re.

@@
"You can hide a semi truck in 300 lines of C."
Debian Lenny 2.6.25-2-amd64

Nekem is debian van, xorg, és WindowMaker. Tapipad tökéletes. Idevonatkozó beállítások xorg.conf-ban:
"Device" "/dev/psaux"
"Protocol" "ExplorerPS/2"

De az én problémám a tiéd ellentéte:
tökéletes tapipad, de epilepsziás rohamot kapok tőle, és nem tudom kikapcsolni.
Ha kilövöm az egérdivert, akkor értelem szerűen kiesik az USB-s egér is.
Tehát ki szeretném kapcsolni csak a tpadot. Az lenne a legjobb, ha opcionálisan vissza is lehetne kapcsolni, de ez nem feltétel.

---
"A megoldásra kell koncentrálni nem a problémára."

a cat /proc/bus/input/devices mit mond

"A very intelligent turtle, found programming UNIX a hurdle
The system, you see ran as slow as did he,And that’s not saying much for the turtle."


Section "InputDevice"
	Identifier	"Synaptics Touchpad"
	Driver		"synaptics"
	Option		"SendCoreEvents"	"true"
	Option		"Device"		"/dev/psaux"
	Option		"Protocol"		"auto-dev"
	Option		"HorizEdgeScroll"	"0"
EndSection

erre mit mond?

"A very intelligent turtle, found programming UNIX a hurdle
The system, you see ran as slow as did he,And that’s not saying much for the turtle."

ahamm alakul.

próbáld így:



Section "InputDevice"
	Identifier	"Synaptics Touchpad"
	Driver		"synaptics"
	Option		"SendCoreEvents"	"true"
	Option		"Device"		"/dev/psaux"
	Option		"Protocol"		"auto-dev"
	Option		"HorizEdgeScroll"	"0"
	Option          "SHMConfig"             "true"
EndSection

majd apt-get install gsynaptics

run gsynaptics majd a második fülön kapcsold ki az érintőtáblát (nem lesz tapiclick, valszeg az akad a húzással)

ha ez sem jó így akkor próbáld a xorgban a protocolt ki így "event"
device meg lehet Option "/dev/input/event3"

tehát így:


Section "InputDevice"
	Identifier	"Synaptics Touchpad"
	Driver		"synaptics"
	Option		"SendCoreEvents"	"true"
	Option		"Device"		"/dev/input/event3"
	Option		"Protocol"		"event"
	Option		"HorizEdgeScroll"	"0"
	Option          "SHMConfig"             "true"
EndSection

"A very intelligent turtle, found programming UNIX a hurdle
The system, you see ran as slow as did he,And that’s not saying much for the turtle."

amennyibe tovább szeretnél finomítani a beállításain azt szintén a xorg.conf teheted meg.
Option "MaxTapTime" "0"

synclient -l

paranccsal megnézheted az aktuális beállításokat pl:


Parameter settings:
    LeftEdge                = 102
    RightEdge               = 921
    TopEdge                 = 76
    BottomEdge              = 691
    FingerLow               = 10
    FingerHigh              = 15
    FingerPress             = 256
    MaxTapTime              = 0
    MaxTapMove              = 220
    MaxDoubleTapTime        = 180
    SingleTapTimeout        = 180
    ClickTime               = 100
    FastTaps                = 0
    EmulateMidButtonTime    = 75
    EmulateTwoFingerMinZ    = 257
    VertScrollDelta         = 15
    HorizScrollDelta        = 20
    VertEdgeScroll          = 1
    HorizEdgeScroll         = 0
    CornerCoasting          = 0
    VertTwoFingerScroll     = 0
    HorizTwoFingerScroll    = 0
    MinSpeed                = 0.325945
    MaxSpeed                = 0.782269
    AccelFactor             = 0.0065189
    TrackstickSpeed         = 40
    EdgeMotionMinZ          = 30
    EdgeMotionMaxZ          = 160
    EdgeMotionMinSpeed      = 1
    EdgeMotionMaxSpeed      = 76
    EdgeMotionUseAlways     = 0
    UpDownScrolling         = 1
    LeftRightScrolling      = 1
    UpDownScrollRepeat      = 1
    LeftRightScrollRepeat   = 1
    ScrollButtonRepeat      = 100
    TouchpadOff             = 0
    GuestMouseOff           = 0
    LockedDrags             = 0
    LockedDragTimeout       = 5000
    RTCornerButton          = 2
    RBCornerButton          = 3
    LTCornerButton          = 0
    LBCornerButton          = 0
    TapButton1              = 1
    TapButton2              = 2
    TapButton3              = 3
    CircularScrolling       = 0
    CircScrollDelta         = 0.1
    CircScrollTrigger       = 0
    CircularPad             = 0
    PalmDetect              = 1
    PalmMinWidth            = 10
    PalmMinZ                = 200
    CoastingSpeed           = 0
    PressureMotionMinZ      = 30
    PressureMotionMaxZ      = 160
    PressureMotionMinFactor = 1
    PressureMotionMaxFactor = 1
    GrabEventDevice         = 1

továbbá a synclien -m

meg monitorozhatod.

"A very intelligent turtle, found programming UNIX a hurdle
The system, you see ran as slow as did he,And that’s not saying much for the turtle."