LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Slackware (https://www.linuxquestions.org/questions/slackware-14/)
-   -   Mouse is borked under slack10 but fine in slack9.1 (https://www.linuxquestions.org/questions/slackware-14/mouse-is-borked-under-slack10-but-fine-in-slack9-1-a-201737/)

Schrambo 07-06-2004 10:17 AM

Mouse is borked under slack10 but fine in slack9.1
 
Evening.

I recieved a copy of the new Slack10 as a DVD installer. Everything is awesome and good but I am having real issues with my mice under X.

Now with slackware 10 and under any desktop enviroment the mouse is non-responsive and just sits there in the middle of the screen. I've used my pre-existing xorg.conf file from my previous slack9.1 but no luck. Other methods i've tried are

- creating new xorg.confs using xorgconfig
- tested with another USB mouse (MS Explorer)
- tested with other mouse devices in /dev/input and /dev/mice but that causes Xorg to crash back to the terminal.

I did try using a PS/2 mouse, that sorta had a little sucess but the mouse cursor keeps jumping down to the very bottom of the left hand corner. You can sort of control the mouse cursor but if you stop movement of the mouse, the cursor will jump back into the corner position. It also sometimes automatically starts clicking and selecting things by itself like how broken mice behave.

Does anyone have any ideas?

keefaz 07-06-2004 10:25 AM

Post the relevant part of your xorg.config and can you add more informations, like if you use hotplug, and if you run kernel 2.6.xx do you use udev feature ?

HuMJohn 07-06-2004 05:17 PM

Re: Mouse is borked under slack10 but fine in slack9.1
 
Quote:

Originally posted by Schrambo
Evening.

I recieved a copy of the new Slack10 as a DVD installer. Everything is awesome and good but I am having real issues with my mice under X.

- - - - - SNIP for brevity - - - - -

I did try using a PS/2 mouse, that sorta had a little sucess but the mouse cursor keeps jumping down to the very bottom of the left hand corner. You can sort of control the mouse cursor but if you stop movement of the mouse, the cursor will jump back into the corner position. It also sometimes automatically starts clicking and selecting things by itself like how broken mice behave.

Does anyone have any ideas?

Without further information, I will guess that you may have the wrong mouse protocol or the "pointer device" is as you first suspected, pointing to the wrong /dev/[device]

rahmed 07-06-2004 07:00 PM

if its a ps2, try /dev/psaux

Schrambo 07-06-2004 09:12 PM

doh. forgot about that sort of info :o

I"m using the default kernel of 2.4.26 (I like stableness)
The mouse is a 3 button Mitsubishi Diamond Touch T210

My xorg.conf pointer device looks like this
Code:

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

Section "InputDevice"

# Identifier and driver

    Identifier        "Mouse1"
    Driver        "mouse"
    Option "Protocol"    "IMPS/2"
    Option "Device"      "/dev/mouse"
    Option "ZAxisMapping" "4 5"

# Mouse-speed setting for PS/2 mouse.

#    Option "Resolution"        "256"

# When using XQUEUE, comment out the above two lines, and uncomment
# the following line.

#    Option "Protocol"        "Xqueue"

# Baudrate and SampleRate are only for some Logitech mice. In
# almost every case these lines should be omitted.

#    Option "BaudRate"        "9600"
#    Option "SampleRate"        "150"

# Emulate3Buttons is an option for 2-button Microsoft mice
# Emulate3Timeout is the timeout in milliseconds (default is 50ms)

#    Option "Emulate3Buttons"
#    Option "Emulate3Timeout"    "50"

# ChordMiddle is an option for some 3-button Logitech mice

#    Option "ChordMiddle"

EndSection

This is exactly the same config as I had in slack 9.1 and worked beautifully.

Mephisto 07-06-2004 09:26 PM

Is /dev/mouse pointing to /dev/psaux? If so you might try deleting /dev/mouse and relinking it to /dev/input/mice. Interestingly enough this fixed the problem for me permanently even though udev rewrote the link. (using 2.6.7) No idea why, but it is working and that is enough for me.

Schrambo 07-06-2004 10:05 PM

Quote:

Originally posted by Mephisto
Is /dev/mouse pointing to /dev/psaux? If so you might try deleting /dev/mouse and relinking it to /dev/input/mice. .
How would I do this? just change the Option "device"?

Mephisto 07-06-2004 10:14 PM

Quote:

Originally posted by Schrambo
How would I do this? just change the Option "device"?
1. From the command line (as root) do a "ls -l /dev/mouse" to find out where it is pointed to.
2. If it is pointed as "/dev/psaux" delete the soft link by typing "rm /dev/mouse"
3. Now create a new link to input/mice by typing "ln -s /dev/input/mice /dev/mouse"
4. Finally do a quick "ls -l /dev/mouse" to confirm it worked and then startx.

Schrambo 07-07-2004 05:05 AM

Thanks Mephisto, that sorted the problem and the mouse works great now. :)
Wonder why it decided to change though.

HuMJohn 07-07-2004 09:06 AM

Quote:

Originally posted by Schrambo
doh. forgot about that sort of info :o

I"m using the default kernel of 2.4.26 (I like stableness)
The mouse is a 3 button Mitsubishi Diamond Touch T210

My xorg.conf pointer device looks like this
[code]
# **********************************************************************
# Core Pointer's InputDevice section
# **********************************************************************

Section "InputDevice"

# Identifier and driver

Identifier "Mouse1"
Driver "mouse"
Option "Protocol" "IMPS/2"
Option "Device" "/dev/mouse"
Option "ZAxisMapping" "4 5"

= = = = ( snip ) = = = =

Make sure that /dev/mouse is a symbolic link to /dev/psaux. If that is OK, then cat /proc/interrupts and make sure no one else is using int 12, just the ps-2 mouse.


All times are GMT -5. The time now is 06:55 PM.