LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware
User Name
Password
Linux - Hardware This forum is for Hardware issues.
Having trouble installing a piece of hardware? Want to know if that peripheral is compatible with Linux?

Notices


Reply
  Search this Thread
Old 12-15-2005, 07:47 PM   #1
Halospree13
LQ Newbie
 
Registered: Dec 2005
Location: USA
Distribution: Gentoo 2000.6
Posts: 5

Rep: Reputation: 0
Mouse not working - Slackware, KDE


Hi all,

My mouse does not recieve input. I tried setting the device in xorg to /dev/input/mice, and the type to "Auto" but no luck. I tried cat /dev/input/mice and the like, and it returns nothing.

I have a Logitech corded USB optical wheel mouse, as well as a Labtec PS/2 optical wheel mouse, and also I have a USB to PS/2 converter for the Logitech if needed.

I have absoultely no idea why it doesn't work, and I've tried everything I can think of. Help?

Thanks,
-Halo
 
Old 12-16-2005, 07:58 AM   #2
munkie_poo
Member
 
Registered: Apr 2004
Location: Newcastle, UK
Distribution: Slackware 10.2
Posts: 134

Rep: Reputation: 15
I use optical usb wheel mouse, heres how mine is setup. The ZAxisMapping is for the wheel.

Code:
Section "InputDevice"

# Identifier and driver

    Identifier  "Mouse1"
    Driver      "mouse"
    Option "Protocol"    "IMPS/2"
    Option "Device"      "/dev/mouse"
    Option "Buttons"     "5"
    Option "ZAxisMapping" "4 5"
 
Old 12-16-2005, 11:08 PM   #3
Halospree13
LQ Newbie
 
Registered: Dec 2005
Location: USA
Distribution: Gentoo 2000.6
Posts: 5

Original Poster
Rep: Reputation: 0
Ok, that didn't work. I think it might be a problem with some kernel modules not loading. I tried running /sbin/modprobe usb-uhci and some other things, and it says it fails.

Also, /dev/mouse, /dev/input/mice, /dev/input/mouse0, etc don't exist. Many of my devices claim to not exist. Why is this?

-Halo
 
Old 12-16-2005, 11:54 PM   #4
llmmix
Member
 
Registered: Jun 2005
Posts: 73

Rep: Reputation: 15
1. don't forget to check bios setting

2. here is my kernel configuration shot
make menuconfig or make xconfig



Quote:
Linux Kernel v2.6.15-rc5-git6 Configuration
──────────────────────────────────────────────────────────────────────────────────────────────────── ─────────────────────────────────────────────────────────
┌───────────────────────────────────────────────────────────────────── USB support ──────────────────────────────────────────────────────────────────────┐
│ Arrow keys navigate the menu. <Enter> selects submenus --->. Highlighted letters are hotkeys. Pressing <Y> includes, <N> excludes, <M> modularizes │
│ features. Press <Esc><Esc> to exit, <?> for Help, </> for Search. Legend:[*] built-in [ ] excluded <M> module < > module capable │
│ │
│ │
│ ┌─────────────────────────────────────────────────────────────────────────────────────────────────── ─────────────────────────────────────────────────┐ │
│ │ <*> Support for Host-side USB │ │
│ │ [ ] USB verbose debug messages │ │
│ │ --- Miscellaneous USB options │ │
│ │[*] USB device filesystem │ │
│ │[*] Enforce USB bandwidth allocation (EXPERIMENTAL) │ │
│ │ [ ] Dynamic USB minor allocation (EXPERIMENTAL) │ │
│ │ [ ] USB selective suspend/resume and wakeup (EXPERIMENTAL) │ │
│ │ --- USB Host Controller Drivers │ │
│ │ <M> EHCI HCD (USB 2.0) support │ │
│ │[*] Full speed ISO transactions (EXPERIMENTAL) │ │
│ │[*] Root Hub Transaction Translators (EXPERIMENTAL) │ │
│ │ < > ISP116X HCD support │ │
│ │ <M> OHCI HCD support │ │
│ │ <M> UHCI HCD (most Intel and VIA) support │ │
│ │ < > SL811HS HCD support │ │
│ │ --- USB Device Class drivers │ │
│ │ [ ] Obsolete OSS USB drivers │ │
│ │ < > USB Modem (CDC ACM) support │ │
│ │ < > USB Printer support │ │
│ │ --- NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' │ │
│ │ --- may also be needed; see USB_STORAGE Help for more information │ │
│ │ < > USB Mass Storage support │ │
│ │ --- USB Input Devices │ │
│ │ <M> USB Human Interface Device (full HID) support │ │
│ │[*] HID input layer support │ │
│ │ [ ] Force feedback support (EXPERIMENTAL) │ │
│ │ [ ] /dev/hiddev raw HID device support │ │
│ │ USB HID Boot Protocol drivers ---> │ │
│ │ < > Aiptek 6000U/8000U tablet support │ │
│ │ < > Wacom Intuos/Graphire tablet support │ │
│ │ < > Acecad Flair tablet support │ │
│ │ < > KB Gear JamStudio tablet support │ │
│ │ < > Griffin PowerMate and Contour Jog support │ │
│ │ < > MicroTouch USB Touchscreen Driver │ │
│ │ < > ITM Touch USB Touchscreen Driver │ │
│ │ < > eGalax TouchKit USB Touchscreen Driver │ │
│ │ < > Yealink usb-p1k voip phone │ │
│ │ < > X-Box gamepad support │ │
│ │ < > ATI / X10 USB RF remote control │ │
│ │ < > Keyspan DMR USB remote control (EXPERIMENTAL) │ │
│ └───────────────────────────────────────┴(+)──────────────────────────────────────────────────────── ─────────────────────────────────────────────────┘ │
├─────────────────────────────────────────────────────────────────────────────────────────────────── ─────────────────────────────────────────────────────┤
│ <Select> < Exit > < Help > │
└─────────────────────────────────────────────────────────────────────────────────────────────────── ─────────────────────────────────────────────────────┘

Last edited by llmmix; 12-16-2005 at 11:56 PM.
 
Old 12-16-2005, 11:56 PM   #5
harrygraham
Member
 
Registered: Apr 2001
Location: Ottawa, Canada
Posts: 157

Rep: Reputation: 18
Dear Monkeypooh,

Thanks for the advice on the Logitech mouse. Got my cordless Logitech mouses' scrollwheel to work using the same settings.

Hello Halo, here's a shotgun approach of what might be wrong:

legacy or DOS support for USB ports should be turned off in bios
hotplug should be installed to help detect USB hardware
using the wrong kernel when installing - maybe try sata.i
maybe the usb ports on your computer are 1.1 not 2.0, but you'd think this wouldn't matter.

That's all I can think of,

Good luck!

Sorry - I posted this at the same time as your last post so haven't tackled the kernel config options

Last edited by harrygraham; 12-17-2005 at 12:03 AM.
 
Old 12-17-2005, 04:43 AM   #6
munkie_poo
Member
 
Registered: Apr 2004
Location: Newcastle, UK
Distribution: Slackware 10.2
Posts: 134

Rep: Reputation: 15
Just for the record.. with my usb mouse, if the system has been powered down (switched off at the plug) I have to unplug the mouse then plug it back in once booted up. Its fine if the computer is turned off by the front power button (not at plug).

I'd also say check hotplug is loading at boot. What other hadware dont work?

Harry, glad you got your wheel working, I cant stand mice without them nowadays.
 
Old 12-17-2005, 11:35 PM   #7
Halospree13
LQ Newbie
 
Registered: Dec 2005
Location: USA
Distribution: Gentoo 2000.6
Posts: 5

Original Poster
Rep: Reputation: 0
Hotplug is enabled, my hardware works (except soundcard and mouse, soundcard because I don't know how to unload devices to upgrade the driver)
My USB is 2.0
I'll try seeing about the USB support in the bios.
Which kernel is sata.i? I'm using bare.i.

I'll check back again.

-Halo
 
Old 12-18-2005, 01:16 PM   #8
munkie_poo
Member
 
Registered: Apr 2004
Location: Newcastle, UK
Distribution: Slackware 10.2
Posts: 134

Rep: Reputation: 15
can you do an 'lsmod', to see what is loaded. (btw 'rmmod modulename' is to unload them)
 
Old 12-21-2005, 01:51 PM   #9
ille.pugil42
Member
 
Registered: Dec 2005
Distribution: Slackware
Posts: 151

Rep: Reputation: 30
sorry...typo

Last edited by ille.pugil42; 12-21-2005 at 02:03 PM.
 
Old 12-21-2005, 02:02 PM   #10
ille.pugil42
Member
 
Registered: Dec 2005
Distribution: Slackware
Posts: 151

Rep: Reputation: 30
Okay, silly question, but an observation nonetheless. Since this is slackware, run 'pkgtool' and then an option at the bottom is to run configuration scripts from the initial setup. Make sure you run the portion regarding the mouse and ensure that it knows you have a USB mouse. This will create the appropriate links - I've had a similar problem before when switching back and forth from PS/2 to USB... give that a shot.
 
  


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 mouse is not working, slackware 10.2 amer_58 Linux - Newbie 7 11-07-2005 06:26 PM
Mouse wheel not working in KDE <Ol>Origy Slackware 6 08-09-2005 04:12 PM
Mouse not working in Slackware subaruwrx Linux - Newbie 17 06-13-2004 03:55 PM
USB Optical Mouse and Slackware 9 - I cannot get it working GIJoe Linux - Newbie 0 10-13-2003 01:36 PM
Slackware - Got Mouse Working but how do you speed it up? alpinewonder Linux - Newbie 5 07-30-2003 01:11 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware

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