Forums

Skip to content

Advanced search
  • Quick links
    • Unanswered topics
    • Active topics
    • Search
  • FAQ
  • Login
  • Register
  • Board index Assistance Desktop Environments
  • Search

Mouse not recognized in KDE

Problems with GUI applications? Questions about X, KDE, Gnome, Fluxbox, etc.? Come on in. NOTE: For multimedia, go up one forum
Post Reply
Advanced search
12 posts • Page 1 of 1
Author
Message
TheWitePony
Apprentice
Apprentice
User avatar
Posts: 211
Joined: Wed Feb 04, 2004 10:30 pm

Mouse not recognized in KDE

  • Quote

Post by TheWitePony » Wed Jul 20, 2005 8:57 pm

I just installed gentoo and emerged KDE. When I go into KDE though the mouse doesn't work. Its odd because it worked when I booted from the livecd. When I do cat /proc/bus/input/devices on the livecd the mouse seems to be clearly defined, but when I boot normally an try the same command it doesn't appear. Also I did add support fot USB HID(Human Interface Devices) in my kernel.

I've trieed searching and I've found plenty of stuff on getting multiple buttons and so forth working, but my cursor doesnt even move. I have a Logitech mx700. I'm still pretty new at this so if someone could explain how to fix this I'd appreciate it.

Also, where exactly is the config file for kde stored? I see an example stored in /etc/X11/xorg.conf.example. I tried just coping it and leaving the .example off and kde crashes, so there must be a working config file its using some where. I've heard that you need to edit these as part of getting the mouse to work.
Top
elvisthedj
Guru
Guru
User avatar
Posts: 483
Joined: Mon Jun 21, 2004 6:06 am
Location: Nampa, ID

  • Quote

Post by elvisthedj » Wed Jul 20, 2005 10:36 pm

the xorg.conf file is a config for x, not for kde. You need to make sure the mouse section of the file is set up to work with your mouse. There are lots of examples for that particular one, so you shouldn't have a problem fixing your xorg.conf. (While you're at it, you might want to set up your video too :D )

As for kde config files, you can look in ~/.kde for user specific kde settings.
Kris Edwards
kris edwards at g mail dot c0m
PGP
WWW
Top
Deathwing00
Bodhisattva
Bodhisattva
User avatar
Posts: 4087
Joined: Fri Jun 13, 2003 9:07 pm
Location: Berlin, Germany
Contact:
Contact Deathwing00
Website

  • Quote

Post by Deathwing00 » Wed Jul 20, 2005 11:55 pm

Moved from Kernel & Hardware to Desktop Environments.
Top
TheWitePony
Apprentice
Apprentice
User avatar
Posts: 211
Joined: Wed Feb 04, 2004 10:30 pm

  • Quote

Post by TheWitePony » Thu Jul 21, 2005 12:08 am

I've maganed to hack together a semi-working xorg.conf file. When trying to use the "default" setting for the mouse given here

Code: Select all

...
Section "InputDevice"
    Identifier  "Mouse0"
    Driver      "mouse"
    Option      "Protocol"     "ImPS/2"
    Option      "Device"       "/dev/mouse"
    Option      "Protocol" "auto"
    Option      "Device" "/dev/input/mice"
    Option      "ZAxisMapping" "4 5"
EndSection
...
i get the following errors.

Code: Select all

(EE) xf86OpenSerial: Cannot open device /dev/mouse
               No such file or directory.
(EE) Mouse1: cannot open input device
(EE) PreInit failed for input device "Mouse1"
No core Pointer
Any ideas? As I said, the mouse worked fine under the livecd so there has to be something else going on here.
Top
TheWitePony
Apprentice
Apprentice
User avatar
Posts: 211
Joined: Wed Feb 04, 2004 10:30 pm

  • Quote

Post by TheWitePony » Thu Jul 21, 2005 12:12 am

ok removing /dev/mouse, I guess its just in /dev/input/mice, seems to clear it up and KDE loads. But I still can't move the cursor, so still have the same problem.
Top
NeoCORE
Tux's lil' helper
Tux's lil' helper
Posts: 100
Joined: Sat Mar 15, 2003 1:27 pm
Location: Ireland
Contact:
Contact NeoCORE
Website

  • Quote

Post by NeoCORE » Thu Jul 21, 2005 12:34 am

There are several possible areas in /dev your mouse could be... have a wee seach though the forums to find the possibilities... to check if its the right one...

cat "insert possible location here" and then move the mouse... if u get a stream of weird characters... thats the correct one :)
To err is human, but to really foul things up, you need a computer :D
NeoCORE Network:)
Adopt a post today! 8)
Top
Headrush
Watchman
Watchman
User avatar
Posts: 5597
Joined: Thu Nov 06, 2003 12:48 am
Location: Bizarro World

  • Quote

Post by Headrush » Thu Jul 21, 2005 12:47 am

From a console type

Code: Select all

cat /dev/input/mice
and move the mouse and see if there is some garbage characters displayed on the screen.
Top
TheWitePony
Apprentice
Apprentice
User avatar
Posts: 211
Joined: Wed Feb 04, 2004 10:30 pm

  • Quote

Post by TheWitePony » Thu Jul 21, 2005 12:48 am

NeoCORE wrote:There are several possible areas in /dev your mouse could be... have a wee seach though the forums to find the possibilities... to check if its the right one...

cat "insert possible location here" and then move the mouse... if u get a stream of weird characters... thats the correct one :)
i have tried all the locations possible. /dev/input/mouse0 though 3 give the following

Code: Select all

cat: /dev/input/mouse0: No such device
cat /dev/input/mice does not give an error, but does not output anything either.
Top
NeoCORE
Tux's lil' helper
Tux's lil' helper
Posts: 100
Joined: Sat Mar 15, 2003 1:27 pm
Location: Ireland
Contact:
Contact NeoCORE
Website

  • Quote

Post by NeoCORE » Thu Jul 21, 2005 1:13 am

what type of mouse do you have?

if usb, did you compile support into the kernel?
To err is human, but to really foul things up, you need a computer :D
NeoCORE Network:)
Adopt a post today! 8)
Top
TheWitePony
Apprentice
Apprentice
User avatar
Posts: 211
Joined: Wed Feb 04, 2004 10:30 pm

  • Quote

Post by TheWitePony » Thu Jul 21, 2005 1:23 am

NeoCORE wrote:what type of mouse do you have?

if usb, did you compile support into the kernel?
its a usb logitech mx700. What I think may be the problem is I didnt comiple the usb support as modules, so I'm trying that now.
Top
TheWitePony
Apprentice
Apprentice
User avatar
Posts: 211
Joined: Wed Feb 04, 2004 10:30 pm

  • Quote

Post by TheWitePony » Thu Jul 21, 2005 1:33 am

EUREKA!!!!

That did it, I recompiled the usb support as modules then made them autoload by adding them to /etc/modules.autoload.d/kernel-2.6. Now cat /dev/input/mice gives me all kinds of beautiful gibberish.
Top
NeoCORE
Tux's lil' helper
Tux's lil' helper
Posts: 100
Joined: Sat Mar 15, 2003 1:27 pm
Location: Ireland
Contact:
Contact NeoCORE
Website

  • Quote

Post by NeoCORE » Thu Jul 21, 2005 1:55 am

I love the gibberish 2 ;)
To err is human, but to really foul things up, you need a computer :D
NeoCORE Network:)
Adopt a post today! 8)
Top
Post Reply

12 posts • Page 1 of 1

Return to “Desktop Environments”

Jump to
  • Assistance
  • ↳   News & Announcements
  • ↳   Frequently Asked Questions
  • ↳   Installing Gentoo
  • ↳   Multimedia
  • ↳   Desktop Environments
  • ↳   Networking & Security
  • ↳   Kernel & Hardware
  • ↳   Portage & Programming
  • ↳   Gamers & Players
  • ↳   Other Things Gentoo
  • ↳   Unsupported Software
  • Discussion & Documentation
  • ↳   Documentation, Tips & Tricks
  • ↳   Gentoo Chat
  • ↳   Gentoo Forums Feedback
  • ↳   Duplicate Threads
  • International Gentoo Users
  • ↳   中文 (Chinese)
  • ↳   Dutch
  • ↳   Finnish
  • ↳   French
  • ↳   Deutsches Forum (German)
  • ↳   Diskussionsforum
  • ↳   Deutsche Dokumentation
  • ↳   Greek
  • ↳   Forum italiano (Italian)
  • ↳   Forum di discussione italiano
  • ↳   Risorse italiane (documentazione e tools)
  • ↳   Polskie forum (Polish)
  • ↳   Instalacja i sprzęt
  • ↳   Polish OTW
  • ↳   Portuguese
  • ↳   Documentação, Ferramentas e Dicas
  • ↳   Russian
  • ↳   Scandinavian
  • ↳   Spanish
  • ↳   Other Languages
  • Architectures & Platforms
  • ↳   Gentoo on ARM
  • ↳   Gentoo on PPC
  • ↳   Gentoo on Sparc
  • ↳   Gentoo on Alternative Architectures
  • ↳   Gentoo on AMD64
  • ↳   Gentoo for Mac OS X (Portage for Mac OS X)
  • Board index
  • All times are UTC
  • Delete cookies

© 2001–2026 Gentoo Foundation, Inc.

Powered by phpBB® Forum Software © phpBB Limited

Privacy Policy

 

 

magic