LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
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-03-2006, 05:29 PM   #1
Pyro In A Cage
LQ Newbie
 
Registered: Feb 2006
Posts: 18

Rep: Reputation: 0
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.
 
Old 02-03-2006, 05:50 PM   #2
kodon
Member
 
Registered: Jul 2004
Location: [jax][fl][usa]
Distribution: Slackware64-current
Posts: 796

Rep: Reputation: 31
you have to set both "Protocol" and "Device" correctly
 
Old 02-03-2006, 05:58 PM   #3
Pyro In A Cage
LQ Newbie
 
Registered: Feb 2006
Posts: 18

Original Poster
Rep: Reputation: 0
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?
 
Old 02-03-2006, 06:09 PM   #4
cwwilson721
Senior Member
 
Registered: Dec 2004
Location: In my house.
Distribution: Ubuntu 10.10 64bit, Slackware 13.1 64-bit
Posts: 2,649
Blog Entries: 1

Rep: Reputation: 67
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
 
Old 02-03-2006, 06:24 PM   #5
Pyro In A Cage
LQ Newbie
 
Registered: Feb 2006
Posts: 18

Original Poster
Rep: Reputation: 0
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.
 
Old 02-03-2006, 09:28 PM   #6
kodon
Member
 
Registered: Jul 2004
Location: [jax][fl][usa]
Distribution: Slackware64-current
Posts: 796

Rep: Reputation: 31
`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)
 
Old 02-04-2006, 12:42 AM   #7
Pyro In A Cage
LQ Newbie
 
Registered: Feb 2006
Posts: 18

Original Poster
Rep: Reputation: 0
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.
 
Old 02-04-2006, 12:52 AM   #8
kodon
Member
 
Registered: Jul 2004
Location: [jax][fl][usa]
Distribution: Slackware64-current
Posts: 796

Rep: Reputation: 31
psaux should be correct for ps2
cat'ing it does absolutely nothing?

Last edited by kodon; 02-04-2006 at 12:53 AM.
 
Old 02-04-2006, 01:21 AM   #9
Pyro In A Cage
LQ Newbie
 
Registered: Feb 2006
Posts: 18

Original Poster
Rep: Reputation: 0
Nope. "cat /dev/mouse" doesn't do anything when I move the mouse. What would I do for a USB mouse?
 
Old 02-04-2006, 02:05 AM   #10
gbonvehi
Senior Member
 
Registered: Jun 2004
Location: Argentina (SR, LP)
Distribution: Slackware
Posts: 3,145

Rep: Reputation: 53
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.
 
Old 02-04-2006, 02:37 AM   #11
Pyro In A Cage
LQ Newbie
 
Registered: Feb 2006
Posts: 18

Original Poster
Rep: Reputation: 0
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.
 
Old 02-04-2006, 02:47 AM   #12
spooge
Member
 
Registered: Nov 2001
Location: n chicago, IL. USA
Distribution: Slackware
Posts: 307

Rep: Reputation: 31
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.
 
Old 02-04-2006, 03:10 AM   #13
gbonvehi
Senior Member
 
Registered: Jun 2004
Location: Argentina (SR, LP)
Distribution: Slackware
Posts: 3,145

Rep: Reputation: 53
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).
 
  


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 poiters doesn't move alshino Linux - Laptop and Netbook 1 11-26-2004 11:39 PM
Mouse move only up or down.... asm Linux - Hardware 1 11-13-2004 08:30 PM
Mouse Won't Move alphanumeric Mandriva 9 03-31-2004 01:19 PM
Mouse will not move opafire Slackware 16 01-06-2004 07:55 AM
how to move pointer w/o using mouse in X gongli Linux - Software 1 10-22-2003 07:42 PM

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

All times are GMT -5. The time now is 05:59 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