LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 06-21-2006, 12:17 PM   #1
Beauford-2
Member
 
Registered: Sep 2004
Posts: 37

Rep: Reputation: 15
Logitec USB scroll mouse problems


I have a Logitec USB scroll mouse and trying to get to work on Slackware 10 with no luck. I have changed the xorg.conf file with a hundred different variations and still nothing. I know this mouse works on this machine as it was working yesterday. Unfortunately I had to reinstall due to another nightmare problem.

I tried a ps2 mouse and all it did was jitter all over the screen opening and closing programs at random.

I have USB support compiled into the kernel along with mouse support. So I'm at a loss.

Any help is appreciated.
 
Old 06-21-2006, 12:55 PM   #2
Beauford-2
Member
 
Registered: Sep 2004
Posts: 37

Original Poster
Rep: Reputation: 15
I got it. I found a USB/PS2 connector and tried it and that solved the problem. Why my other ps2 mouse was wonky who knows.

Thx
 
Old 06-23-2006, 08:47 PM   #3
Beauford-2
Member
 
Registered: Sep 2004
Posts: 37

Original Poster
Rep: Reputation: 15
Question

Well that was short and sweet. The PS2 port on my machine hasn't worked properly for who knows how long, thus the need to get the USB mouse working.

I have read all the various threads on this and haven't been able to get it work.

It was working fine the other day, but I had to reinstall Slackware and now I can't get it to work. My old xord.conf file (which I saved) is below.

I'd really appreciate any help getting this going as this last week has just been one screw-up after another.

Thanks

------------------------------

Section "InputDevice"

# Identifier and driver

Identifier "Mouse0"
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"

# 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"

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

InputDevice "Mouse0" "CorePointer"
InputDevice "Keyboard1" "CoreKeyboard"
 
Old 06-23-2006, 09:02 PM   #4
evilDagmar
Member
 
Registered: Mar 2005
Location: Right behind you.
Distribution: NBG, then randomed.
Posts: 480

Rep: Reputation: 31
Stop using it as a PS/2 mouse then. Shove it into an available USB port, use the device /dev/input/mice, and get rid of the duplicate protocol definition. Auto works just fine for most USB mice, but IMPS/2 is what everything is more or less compliant with.
 
Old 06-23-2006, 09:09 PM   #5
FreeDoughnut
Member
 
Registered: Jun 2006
Distribution: Slackware 10.2, Debian Testing/Unstable, Ubuntu Breezy Badger, working on LFS
Posts: 228

Rep: Reputation: 30
Also, since it's a scroll mouse, you need to add the line
Quote:
Option "ZAxisMapping" "4 5"
assuming it's a 5 button. You definitely want to have only one protocol line and use IMPS/2. Hope you can get it working!
 
Old 06-23-2006, 10:05 PM   #6
Beauford-2
Member
 
Registered: Sep 2004
Posts: 37

Original Poster
Rep: Reputation: 15
The reason I'm posting is because I've done everything mentioned here, and tried a hundred other configurations. Nothing works. I have been at this since this afternoon steady - so you can imagine the steps I've gone through. I'm not just posting because I'm lazy.

One question though. I have USB compiled into the kernel, is this ok or would it be better as a module.

Thanks
 
Old 06-23-2006, 10:15 PM   #7
FreeDoughnut
Member
 
Registered: Jun 2006
Distribution: Slackware 10.2, Debian Testing/Unstable, Ubuntu Breezy Badger, working on LFS
Posts: 228

Rep: Reputation: 30
Eureka! Use /dev/input/mice or /dev/input/mouse. /dev/mouse is a link to /dev/psaux, which is probably your problem. This is probably what it should look like:
Quote:
Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "IMPS/2"
Option "Device" "/dev/input/mice"
Option "ZAxisMapping" "4 5"
 
Old 06-23-2006, 10:31 PM   #8
evilDagmar
Member
 
Registered: Mar 2005
Location: Right behind you.
Distribution: NBG, then randomed.
Posts: 480

Rep: Reputation: 31
Quote:
Originally Posted by evilDagmar
Stop using it as a PS/2 mouse then. Shove it into an available USB port, use the device /dev/input/mice, and get rid of the duplicate protocol definition. Auto works just fine for most USB mice, but IMPS/2 is what everything is more or less compliant with.
Read it more carefully this time.

USB should "just work".
 
Old 06-23-2006, 10:38 PM   #9
FreeDoughnut
Member
 
Registered: Jun 2006
Distribution: Slackware 10.2, Debian Testing/Unstable, Ubuntu Breezy Badger, working on LFS
Posts: 228

Rep: Reputation: 30
Oops *Slaps head*. Sorry, I read too quickly and had a brain cramp. Here's a snapshot into my head:
What you say:
Quote:
Stop using it as a PS/2 mouse then. Shove it into an available USB port, use the device /dev/input/mice, and get rid of the duplicate protocol definition. Auto works just fine for most USB mice, but IMPS/2 is what everything is more or less compliant with.
What I see:
Quote:
Stop putting "protocol ps/2". Use the USB protocol and device. Fix duplicate protocol declaration. Auto mostly works, but use IMPS/2 for plain USB.
 
Old 06-24-2006, 12:18 AM   #10
evilDagmar
Member
 
Registered: Mar 2005
Location: Right behind you.
Distribution: NBG, then randomed.
Posts: 480

Rep: Reputation: 31
By George, I think you've got it!
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
USB scroll mouse not working varaahan Linux - Software 1 06-21-2006 11:45 AM
USB mouse and scroll not working. Slovak Slackware 18 11-16-2004 09:20 AM
USB scroll mouse doesn't scroll Rhatlinux Linux - Software 10 09-29-2004 07:42 PM
How to fix this USB mouse with scroll IamDaniel Slackware 5 12-04-2003 07:10 AM
cant get my logitec mouse to work :( BmxFace Linux - General 4 07-01-2003 01:54 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 01:23 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration