Slackware This Forum is for the discussion of Slackware Linux.
|
| Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
 |
GNU/Linux Basic Guide
This 255-page guide will provide you with the keys to understand the philosophy of free software, teach you how to use and handle it, and give you the tools required to move easily in the world of GNU/Linux. Many users and administrators will be taking their first steps with this GNU/Linux Basic guide and it will show you how to approach and solve the problems you encounter.
Click Here to receive this Complete Guide absolutely free. |
Due to network maintenance being performed by our provider, LQ will be down starting at 05:01 AM UTC. The exact duration of the downtime isn't currently known. We apologize for the inconvenience.
|
 |
02-03-2006, 05:29 PM
|
#1
|
|
LQ Newbie
Registered: Feb 2006
Posts: 18
Rep:
|
Mouse doesn't move
I've tried 2 mice. One dell PS/2 mouse, and one Logitech PS/2 USB mouse. I am using KDE with X. The mouse doesn't even wake up the monitor, I have to use the keyboard. It's not a hardware issue, because it worked fine with ubuntu linux, and windows xp. I've ran "xorgconfig" multiple times, and have tried selecting "Microsoft", "Logitech", and "Auto". None worked. What can I do?
OS: Linux Slackware 10.2
Boot Loader: Lilo
Kernel: test26.s (It's the only one that would detect my SCSI hard drive)
Desktop Environment: KDE
RAM: 768 DDR
Processor: 2.4Ghz Pentium 4
Video Card: Nvidia Geforce4 MX400
Last edited by Pyro In A Cage; 02-04-2006 at 01:57 AM.
|
|
|
|
02-03-2006, 05:50 PM
|
#2
|
|
Member
Registered: Jul 2004
Location: [jax][fl][usa]
Distribution: Slackware64-current
Posts: 796
Rep:
|
you have to set both "Protocol" and "Device" correctly
|
|
|
|
02-03-2006, 05:58 PM
|
#3
|
|
LQ Newbie
Registered: Feb 2006
Posts: 18
Original Poster
Rep:
|
Would you mind giving me more detailed instructions. I'm a newbie when it comes to linux.
I know that I would set those in X's config file, but what should I put for them?
|
|
|
|
02-03-2006, 06:09 PM
|
#4
|
|
Senior Member
Registered: Dec 2004
Location: In my house.
Distribution: Ubuntu 10.10 64bit, Slackware 13.1 64-bit
Posts: 2,649
Rep:
|
First off, does gpm run at boottime? It's one of the questions asked during install. If so, when you get to the console, see if the mouse moves.
If not, run 'mouseconfig' . See if it works in console. If it does, then you can start playing with /etc/X11/xorg.conf.
If it still doesn't work, let us know
|
|
|
|
02-03-2006, 06:24 PM
|
#5
|
|
LQ Newbie
Registered: Feb 2006
Posts: 18
Original Poster
Rep:
|
Yes, GPM is run at boot-time, and no the mouse doesn't move.
I ran mouseconfig, and tried almost all of the options, and tested them with "cat /dev/mouse", and none of them worked.
|
|
|
|
02-03-2006, 09:28 PM
|
#6
|
|
Member
Registered: Jul 2004
Location: [jax][fl][usa]
Distribution: Slackware64-current
Posts: 796
Rep:
|
`ls -l /dev/mouse`
it's most likely pointing to /dev/psaux
you can either edit udev
or just use the actual device
in your confs (eg /dev/ttyS0)
|
|
|
|
02-04-2006, 12:42 AM
|
#7
|
|
LQ Newbie
Registered: Feb 2006
Posts: 18
Original Poster
Rep:
|
Yes, it is pointing to psaux. I don't know what to make it point to, because I don't know which device is for the PS2 port.
|
|
|
|
02-04-2006, 12:52 AM
|
#8
|
|
Member
Registered: Jul 2004
Location: [jax][fl][usa]
Distribution: Slackware64-current
Posts: 796
Rep:
|
psaux should be correct for ps2
cat'ing it does absolutely nothing?
Last edited by kodon; 02-04-2006 at 12:53 AM.
|
|
|
|
02-04-2006, 01:21 AM
|
#9
|
|
LQ Newbie
Registered: Feb 2006
Posts: 18
Original Poster
Rep:
|
Nope. "cat /dev/mouse" doesn't do anything when I move the mouse. What would I do for a USB mouse?
|
|
|
|
02-04-2006, 02:05 AM
|
#10
|
|
Senior Member
Registered: Jun 2004
Location: Argentina (SR, LP)
Distribution: Slackware
Posts: 3,145
Rep:
|
test26.s is a testing kernel, be sure to read about it before installing.
A brief: psmouse is included as module with test26.s kernel, but the installer doesn't install the modules, install them from /testing on CD2 to have mouse support.
|
|
|
|
02-04-2006, 02:37 AM
|
#11
|
|
LQ Newbie
Registered: Feb 2006
Posts: 18
Original Poster
Rep:
|
There is no /testing directory on CD2. There is on CD3, but I don't see anything that says psmouse. What exactly do I do from the /testing directory to install it?
Edit: I have no idea what I did, but it works now! Thank you everybody
Last edited by Pyro In A Cage; 02-04-2006 at 02:53 AM.
|
|
|
|
02-04-2006, 02:47 AM
|
#12
|
|
Member
Registered: Nov 2001
Location: n chicago, IL. USA
Distribution: Slackware
Posts: 306
Rep:
|
what does your /etc/X11/xorg.conf look like at
**********************************************************************
# Core Pointer's InputDevice section Mouse !
# **********************************************************************
Code:
Section "InputDevice"
# original mouse with imwheel
Identifier "Mouse1"
Driver "mouse"
Option "Protocol" "IMPS/2"
Option "Device" "/dev/mouse"
Option "Buttons" "7"
Option "ZAxisMapping" "6 7"
Option "Emulate3Buttons" "no"
Option "Device" "/dev/psaux"
don't use the above this is with imwheel. was just an example
gbonvehi was refering to installing a 2.6 kernel
Quote:
test26.s is a testing kernel, be sure to read about it before installing.
A brief: psmouse is included as module with test26.s kernel, but the installer doesn't install the modules, install them from /testing on CD2 to have mouse support.
|
Last edited by spooge; 02-04-2006 at 02:49 AM.
|
|
|
|
02-04-2006, 03:10 AM
|
#13
|
|
Senior Member
Registered: Jun 2004
Location: Argentina (SR, LP)
Distribution: Slackware
Posts: 3,145
Rep:
|
Quote:
|
Originally Posted by spooge
gbonvehi was refering to installing a 2.6 kernel
|
He edited his post (maybe you didn't read that part) stating he used test26.s kernel.
Quote:
|
Originally Posted by Pyro In A Cage
There is no /testing directory on CD2. There is on CD3, but I don't see anything that says psmouse. What exactly do I do from the /testing directory to install it?
Edit: I have no idea what I did, but it works now! Thank you everybody
|
If it's called /testing that's the directory, I always get only CD 1 so I wasn't sure about it, sorry.
Probably you installed kernel-modules package which is the one that includes kernel modules (psmouse is there).
|
|
|
|
| Thread Tools |
Search this Thread |
|
|
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT -5. The time now is 11:57 PM.
|
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|