LinuxQuestions.org
Review your favorite Linux distribution.
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 02-02-2005, 07:30 PM   #1
O4_SRT
LQ Newbie
 
Registered: Feb 2005
Posts: 21

Rep: Reputation: 15
mouse problems....NOT SCROLL ISSUES


my ps/2 / USB intellimouse, or any mouse for that matter, wont work.

ive tried setting it up in xorgconfig, added the ZAxis option, made sure it said IMPS/2, tried it on auto as well, but still nothing.

I have it plugged into the ps/2 port using the adapter that came with it. Works fine with windows.

need a little help here, trying to get this setup tonight so i can finish a project thats due tomorrow, without going in to the computer lab at school.
 
Old 02-02-2005, 07:36 PM   #2
mjrich
Senior Member
 
Registered: Dec 2001
Location: New Zealand
Distribution: Debian
Posts: 1,046

Rep: Reputation: 45
If you're not even getting a response, then either you have the wrong protocol or the wrong device listed. Perhaps post some more details about the mouse want to use, along with your xorg.conf - or a link to it.

Also: which kernel (and did you compile it, or was it the stock Slack one ).

Cheers,

mj
 
Old 02-02-2005, 07:48 PM   #3
O4_SRT
LQ Newbie
 
Registered: Feb 2005
Posts: 21

Original Poster
Rep: Reputation: 15
the mouse is an older 4 button w/scroll wheel MS intellimouse, probably a good 4-5 years old. Its USB and PS/2 compatible.

i compiled with either bare.i or the stock slack kernel....are they the same?
 
Old 02-02-2005, 07:53 PM   #4
mjrich
Senior Member
 
Registered: Dec 2001
Location: New Zealand
Distribution: Debian
Posts: 1,046

Rep: Reputation: 45
Quote:
i compiled with either bare.i or the stock slack kernel....are they the same?
No idea - but you'll probably need to have HID and usb mouse support compiled in, if you want to plug it into a usb port.

What have you got as your mouse entry in your xorg.conf ?

Cheers,

mj
 
Old 02-02-2005, 07:56 PM   #5
O4_SRT
LQ Newbie
 
Registered: Feb 2005
Posts: 21

Original Poster
Rep: Reputation: 15
the mouse is plugged into the ps/2 port, and i forgot to mention its optical, if that matters.


my xorgconfig looks like this:


identifier "mouse1"
driver "mouse"
option "protocol" "IMPS/2"
option "device" "/dev/mouse"

Last edited by O4_SRT; 02-02-2005 at 08:16 PM.
 
Old 02-02-2005, 08:18 PM   #6
mjrich
Senior Member
 
Registered: Dec 2001
Location: New Zealand
Distribution: Debian
Posts: 1,046

Rep: Reputation: 45
You probably will need something like:
Code:
Section "InputDevice"
        Identifier      "USB Mouse"
        Driver          "mouse"
        Option          "Device"            "/dev/input/mice"
        Option          "Protocol"          "IMPS/2"
        Option          "ZAxisMapping"      "5 6"
        Option          "Buttons"           "6"
EndSection
- for a four button plus scrollwheel usb mouse. Though you'll almost certainly need HID support in your kernel to use /dev/input/mice, and the Identifier will have to match that in the ServerLayout section.

Cheers,

mj
 
Old 02-02-2005, 08:19 PM   #7
mjrich
Senior Member
 
Registered: Dec 2001
Location: New Zealand
Distribution: Debian
Posts: 1,046

Rep: Reputation: 45
Just saw your edited post.

You'll need to use mouse1 in place of USB Mouse.

Cheers,

mj
 
Old 02-02-2005, 08:24 PM   #8
O4_SRT
LQ Newbie
 
Registered: Feb 2005
Posts: 21

Original Poster
Rep: Reputation: 15
so how do i know if i have HID support in my kernel, and how do i match that in the serverlayout section?
 
Old 02-02-2005, 08:27 PM   #9
mjrich
Senior Member
 
Registered: Dec 2001
Location: New Zealand
Distribution: Debian
Posts: 1,046

Rep: Reputation: 45
Look for the stanza in your xorg.conf that begins with "ServerLayout"

If in doubt, post your whole xorg.conf.

mj
 
Old 02-02-2005, 08:31 PM   #10
O4_SRT
LQ Newbie
 
Registered: Feb 2005
Posts: 21

Original Poster
Rep: Reputation: 15
and about the HID support?
 
Old 02-02-2005, 08:38 PM   #11
mjrich
Senior Member
 
Registered: Dec 2001
Location: New Zealand
Distribution: Debian
Posts: 1,046

Rep: Reputation: 45
No usb human interface devices (HID's) will work if it isn't enabled - other than that, I don't know. If you're using a usb keyboard, then you're obviously ok. Easiest way is just to plug it in, edit your xorg.conf as above (changing USB Mouse to mouse1 - and check that the mouse that's mentioned in your ServerLayout is also mouse1) and restart X.

Cheers,

mj
 
Old 02-02-2005, 08:52 PM   #12
O4_SRT
LQ Newbie
 
Registered: Feb 2005
Posts: 21

Original Poster
Rep: Reputation: 15
wireless usb keyboard works fine....so its something that is affecting the mouse excusively.


wheres a flow chart when ya need one?
 
Old 02-02-2005, 09:10 PM   #13
O4_SRT
LQ Newbie
 
Registered: Feb 2005
Posts: 21

Original Poster
Rep: Reputation: 15
changed xorg.conf to:


Identifier "Mouse1"
Driver "mouse"
Option "device" "/dev/input/mice"
Option "Protocol" "IMPS/2"
Option "ZAxisMapping" "5 6"
Option "Buttons" "6"


and now X wont even start....its saying no pointer found


how do i go about posting a copy of my xorg.conf on here?
 
Old 02-02-2005, 10:55 PM   #14
mjrich
Senior Member
 
Registered: Dec 2001
Location: New Zealand
Distribution: Debian
Posts: 1,046

Rep: Reputation: 45
Quote:
how do i go about posting a copy of my xorg.conf on here?
Presumably you're using a different computer/system while you sort this out, so I'd simply copy it to a floppy (in a console:
Code:
less /etc/fstab
mount /floppy                     (or wherever floppy is mounted, according to fstab)
cp /etc/X11/xorg.conf /floppy
umount -l /floppy
- then copy and paste the contents onto your entry here. Incidentally, what is the response when you type into a shell (as root)
Code:
cat /dev/input/mice
- and then move the mouse around ?

Cheers,

mj
 
Old 02-03-2005, 01:35 PM   #15
O4_SRT
LQ Newbie
 
Registered: Feb 2005
Posts: 21

Original Poster
Rep: Reputation: 15
actually its the same computer, its kinda a PITA switching back and forth, but when this computer is down, so is our other one, as it gets its internet connection through this one.
 
  


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
Mouse Issues (not the "ordinary" scroll ones) thugic Slackware 3 10-02-2005 04:58 AM
mouse scroll issues deveraux83 Slackware 2 11-08-2004 08:44 AM
dual processor and scroll mouse issues. ValidiusMaximus Linux - Hardware 2 09-08-2004 08:41 AM
Scroll Mouse Problems VeganHacker Linux - Hardware 7 03-16-2004 08:50 PM
Odd solution to Mouse scroll wheel issues. WhiteChedda Mandriva 0 09-30-2003 09:56 AM

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

All times are GMT -5. The time now is 10:17 AM.

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