LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Hardware (https://www.linuxquestions.org/questions/linux-hardware-18/)
-   -   Mouse not working - Slackware, KDE (https://www.linuxquestions.org/questions/linux-hardware-18/mouse-not-working-slackware-kde-393365/)

Halospree13 12-15-2005 07:47 PM

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

munkie_poo 12-16-2005 07:58 AM

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"


Halospree13 12-16-2005 11:08 PM

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

llmmix 12-16-2005 11:54 PM

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 > │
└─────────────────────────────────────────────────────────────────────────────────────────────────── ─────────────────────────────────────────────────────┘

harrygraham 12-16-2005 11:56 PM

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

munkie_poo 12-17-2005 04:43 AM

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.

Halospree13 12-17-2005 11:35 PM

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

munkie_poo 12-18-2005 01:16 PM

can you do an 'lsmod', to see what is loaded. (btw 'rmmod modulename' is to unload them)

ille.pugil42 12-21-2005 01:51 PM

sorry...typo

ille.pugil42 12-21-2005 02:02 PM

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.


All times are GMT -5. The time now is 04:50 PM.