Toon posts:

[slackware 9.0] scrollwheel probleem

Pagina: 1
Acties:

Verwijderd

Topicstarter
er is hier al veel vaker over gehad en het internet staat er vol mee, maar geen van alle problemen komen precies overeen, en oplossen doen ze het ook niet voor mijn situatie.

ik heb dus slackware 9.0 met merkloos optische scrollwheel usb muis, waarvan het alles lukt, ook het indrukken van de scrollwheel, maar het scrollen dus niet.

in al die howto's enzo wordt verwezen naar je XF86Config file dus heb ik er uitgehaald, wat volgens mij met de muis te maken heeft.

dit staat halverwege:

# **********************************************************************
# Core Pointer's InputDevice section
# **********************************************************************

Section "InputDevice"

# Identifier and driver

Identifier "Mouse1"
Driver "mouse"

# On platforms where PnP mouse detection is supported the following
# protocol setting can be used when using a newer PnP mouse:

# Option "Protocol" "Auto"

# The available mouse protocols types that you can set below are:
# Auto BusMouse GlidePoint GlidePointPS/2 IntelliMouse IMPS/2
# Logitech Microsoft MMHitTab MMSeries Mouseman MouseManPlusPS/2
# MouseSystems NetMousePS/2 NetScrollPS/2 OSMouse PS/2 SysMouse
# ThinkingMouse ThinkingMousePS/2 Xqueue
Option "Protocol" "PS/2"

# The mouse device. The device is normally set to /dev/mouse,
# which is usually a symbolic link to the real device.

Option "Device" "/dev/mouse"
# Option "Device" "/dev/psaux"
# Option "Device" "/dev/ttyS0"
# Option "Device" "/dev/ttyS1"

# blaat
# . . .
# blaat

EndSection


en onderin nog eens:

# **********************************************************************
# ServerLayout sections.
# **********************************************************************

# Any number of ServerLayout sections may be present. Each describes
# the way multiple screens are organised. A specific ServerLayout
# section may be specified from the X server command line with the
# "-layout" option. In the absence of this, the first section is used.
# When now ServerLayout section is present, the first Screen section
# is used alone.

Section "ServerLayout"

# The Identifier line must be present
Identifier "Simple Layout"

# Each Screen line specifies a Screen section name, and optionally
# the relative position of other screens. The four names after
# primary screen name are the screens to the top, bottom, left and right
# of the primary screen. In this example, screen 2 is located to the
# right of screen 1.

Screen "Screen 1"

# Each InputDevice line specifies an InputDevice section name and
# optionally some options to specify the way the device is to be
# used. Those options include "CorePointer", "CoreKeyboard" and
# "SendCoreEvents".

InputDevice "Mouse1" "CorePointer"
InputDevice "Keyboard1" "CoreKeyboard"

EndSection


Section "InputDevice"

Identifier "Keyboard"

Option "XkbModel" "pc104"
Option "XkbLayout" "us"
Driver "keyboard"
EndSection


Section "InputDevice"

Identifier "Mouse"

Option "Protocol" "USB"
Option "Device" "/dev/input/mouse0"
Driver "mouse"
EndSection


nou dit dus, zou iemand mij hier mee kunnen helpen?
bedankt.

  • Emmeau
  • Registratie: Mei 2003
  • Niet online

Emmeau

All your UNIX are belong to us

uit het hoofd

Option "ZAxisMapping" "4 5"

toevoegen

[ Voor 22% gewijzigd door Emmeau op 21-09-2003 19:48 ]

If you choose to criticise you choose your enemies


Verwijderd

Topicstarter
al geprobeert, werkt niet

[ Voor 43% gewijzigd door Verwijderd op 21-09-2003 19:50 ]


  • Emmeau
  • Registratie: Mei 2003
  • Niet online

Emmeau

All your UNIX are belong to us

code:
1
2
3
4
5
Identifier  "Mouse1"
Driver  "mouse"
Option "Protocol"    "IMPS/2" 
Option "Device"      "/dev/input/mice"
Option "ZAxisMapping"   "4 5"


probeer dit

If you choose to criticise you choose your enemies


  • Bergen
  • Registratie: Maart 2001
  • Laatst online: 14-04 13:57

Bergen

Spellingscontroleur

...en als dat ook niet werkt kun je Option "Buttons" "5" proberen.

  • Vae Victis
  • Registratie: April 2001
  • Laatst online: 01:21

Vae Victis

Dark Lord of the Sith

bij mijn weten:
code:
1
2
     Option "Buttons" "7"
     Option "ZAxisMapping" "4 5"

Werkt in mijn slack 9.0 met usb muis. (heb 5 buttons)

Verwijderd

Topicstarter
nope, werkt alle 3 niet :'(

[ Voor 6% gewijzigd door Verwijderd op 21-09-2003 20:01 ]


Verwijderd

Topicstarter
waar moet ik trouwens bijzetten? bij de middelste of bij de onderste?

  • Vae Victis
  • Registratie: April 2001
  • Laatst online: 01:21

Vae Victis

Dark Lord of the Sith

mijn versie:
code:
1
2
3
4
5
6
7
8
Section "InputDevice"
    Identifier  "Mouse1"
    Driver      "mouse"
    Option "Protocol"    "IMPS/2"
    Option "Device"      "/dev/mouse"
    Option "Buttons" "7"
    Option "ZAxisMapping" "4 5"
EndSection

wat staat er in je
"/etc/rc.d/rc.gpm"

Verwijderd

Topicstarter
dit:

#!/bin/sh
# Start/stop/restart the GPM mouse server:

if [ "$1" = "stop" ]; then
echo "Stopping gpm..."
/usr/sbin/gpm -k
elif [ "$1" = "restart" ]; then
echo "Restarting gpm..."
/usr/sbin/gpm -k
sleep 1
/usr/sbin/gpm -m /dev/mouse -t imps2
else # assume $1 = start:
echo "Starting gpm: /usr/sbin/gpm -m /dev/mouse -t imps2"
/usr/sbin/gpm -m /dev/mouse -t imps2
fi

Verwijderd

Verwijderd schreef op 21 September 2003 @ 20:02:
waar moet ik trouwens bijzetten? bij de middelste of bij de onderste?
middelste

  • Vae Victis
  • Registratie: April 2001
  • Laatst online: 01:21

Vae Victis

Dark Lord of the Sith

In het midden staat:
Identifier "Mouse1"
En onderin:
Identifier "Mouse"
Maak daar eens hetzelfde van.

En als je stuk in het midden vervangt met mijn, + aantal buttons aanpast moet het werken.

Verwijderd

Topicstarter
Vae Victis, inderdaad, hij doet het!! :D

bedankt allemaal!


maar waar is die onderste dan goed voor?

[ Voor 29% gewijzigd door Verwijderd op 21-09-2003 20:36 ]


  • Vae Victis
  • Registratie: April 2001
  • Laatst online: 01:21

Vae Victis

Dark Lord of the Sith

Verwijderd schreef op 21 September 2003 @ 20:32:
Vae Victis, inderdaad, hij doet het!! :D
Mooi :)
maar waar is die onderste dan goed voor?
Als je kijkt naar config file:
Bovenste is
"# Core Pointer's InputDevice section."
Onderste is
"# ServerLayout sections."

Zijn dus 2 verschillende delen in config file.
En als je de onderste even doorneemt zie je dat er meerdere 'sections' toegevoegd kunnen worden.
Staat ook bij wat er mee mogelijk is.

  • Bergen
  • Registratie: Maart 2001
  • Laatst online: 14-04 13:57

Bergen

Spellingscontroleur

Vae Victis schreef op 21 september 2003 @ 19:56:
bij mijn weten:
code:
1
2
     Option "Buttons" "7"
     Option "ZAxisMapping" "4 5"

Werkt in mijn slack 9.0 met usb muis. (heb 5 buttons)
Waarom staat buttons dan op 7 bij jou? :) Of heb je 5 knoppen + een scrollwieltje?

[ Voor 15% gewijzigd door Bergen op 22-09-2003 23:21 ]


  • Vae Victis
  • Registratie: April 2001
  • Laatst online: 01:21

Vae Victis

Dark Lord of the Sith

GerbenW:
Ja heb 5 buttons + scroll. (waarbij scroll 1 van de 5 buttons is)
Moet eigenlijk nog even uitzoeken hoe ik elk extra button aan het werk krijg, maar voorzover werkt het uitstekend.

[edit:]
Antwoord op reply hieronder.
Ik heb 4 lossen knoppen.
2 links van scroll en 2 rechts van scroll.
Scroll zelf is ingedrukt een knop.
En naar boven en beneden is elk apart een 'knop'.

[ Voor 37% gewijzigd door Vae Victis op 23-09-2003 15:02 ]


  • Bergen
  • Registratie: Maart 2001
  • Laatst online: 14-04 13:57

Bergen

Spellingscontroleur

Ja als je 't scrollknopje indrukt bedoel je? Omhoog scrollen is ook 1 knop en omlaag scrollen is weer een andere knop. Mijn muis heeft bijvoorbeeld 2 gewone knoppen, een duimknop een scrollknop en dus een scrollwiel. Dat is dus 2+1+1+2 = 6 knoppen.
Pagina: 1