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.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
 |
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/Debian
Posts: 308
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).
|
|
|
All times are GMT -5. The time now is 04:09 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
|
|