LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
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 12-26-2005, 08:34 PM   #1
venom96737
LQ Newbie
 
Registered: Dec 2005
Posts: 9

Rep: Reputation: 0
Usb Mouse


well i installed slackware 10/2 all the way through and even told the install usb mouse but my wireless usb mouse is still not responding. The keyboard is having no problems though any suggestions on how to fix this im sure i have to edit a config file of some sort but which one? Complete linux newb here so details would be greatful
 
Old 12-26-2005, 08:43 PM   #2
Bruce Hill
HCL Maintainer
 
Registered: Jun 2003
Location: McCalla, AL, USA
Distribution: Arch, Gentoo
Posts: 6,941

Rep: Reputation: 129Reputation: 129
Welcome to LQ!

What type of mouse do you have?

You should use a terminal and edit /etc/X11/xorg.conf
and you'll probably need it like this:
Code:
# **********************************************************************
# Core Pointer's InputDevice section
# **********************************************************************

Section "InputDevice"

# Identifier and driver

    Identifier  "Mouse1"
    Driver      "mouse"

# On platforms where PnP mouse detection is supported the following
# protocol setting can be used when using a newer PnP mouse:

#    Option     "Protocol"      "Auto"

# The available mouse protocols types that you can set below are:
#    Auto BusMouse GlidePoint GlidePointPS/2 IntelliMouse IMPS/2
#    Logitech Microsoft MMHitTab MMSeries Mouseman MouseManPlusPS/2
#    MouseSystems NetMousePS/2 NetScrollPS/2 OSMouse PS/2 SysMouse
#    ThinkingMouse ThinkingMousePS/2 Xqueue
    Option "Protocol"    "IMPS/2"
    Option "ZAxisMapping" "4  5"

# The mouse device.  The device is normally set to /dev/mouse,
# which is usually a symbolic link to the real device.

    Option "Device"      "/dev/mouse"
#   Option "Device"      "/dev/input/mice"
#   Option "Device"      "/dev/psaux"
#   Option "Device"      "/dev/ttyS0"
#   Option "Device"      "/dev/ttyS1"
That's probably all you'll need. If the "/dev/mouse" option
doesn't work, try "/dev/input/mice". The options above that
section allow your scroll wheel to work.

That's the two comps I have here. The first one works for a
Logitech Cordless Desktop LX500 wireless kbd and mouse; the
second works for a Microsoft Wireless Intellimouse Explorer.
Both are using USB port.
 
Old 12-26-2005, 08:55 PM   #3
venom96737
LQ Newbie
 
Registered: Dec 2005
Posts: 9

Original Poster
Rep: Reputation: 0
Thanx for the reply

ok its an Interlink mouse and keyboard I got them while I was in korea in the army the only qustion i really have is how do i navigate to the terminal without the mouse i know how to do it in wondows but not in linux
 
Old 12-26-2005, 09:11 PM   #4
Bruce Hill
HCL Maintainer
 
Registered: Jun 2003
Location: McCalla, AL, USA
Distribution: Arch, Gentoo
Posts: 6,941

Rep: Reputation: 129Reputation: 129
I don't know which window manager / desktop environment
you're using. Press Ctrl+Alt+F2 to get a virtual terminal,
then login as root and then issue "pico /etc/X11/xorg.conf"
to edit the file. After you're finished, press Ctrl+Alt+F7 to
return to the original terminal session.

Or press Ctrl+Alt+Backspace to exit the X server and login
as root and edit the file. Afterwards logout as root, login
as user again, then issue startx to start the X server.
 
Old 12-26-2005, 09:51 PM   #5
venom96737
LQ Newbie
 
Registered: Dec 2005
Posts: 9

Original Poster
Rep: Reputation: 0
well i tried

I tried what you said and still no mouse i got to the terminal fine and when i went to edit the file it was empty dont know if that is normal but i went ahead anyway and typed all info givin got back to the terminal and still no mouse any suggestions
 
Old 12-26-2005, 10:13 PM   #6
Bruce Hill
HCL Maintainer
 
Registered: Jun 2003
Location: McCalla, AL, USA
Distribution: Arch, Gentoo
Posts: 6,941

Rep: Reputation: 129Reputation: 129
I don't know what file you edited, but if /etc/X11/xorg.conf
is empty, you can't have an X server at all. See if you typed
the name wrong. And after you edit it, restart the X server.
 
Old 12-26-2005, 10:27 PM   #7
Yogstr
LQ Newbie
 
Registered: Dec 2005
Posts: 21

Rep: Reputation: 0
USB mouse trouble

I am a realitive newbie as well. I can only share you what i discovered about my USB wireless MS Intellimouse mouse and how i got it working.

1. Un-comment the appropriate lines in etc/rc.d/rc.modules referring to the USB HID, USB Core devices.

2. In xorg.conf, i found that /dev/input/mice and ExplorerPS2 combination worked for me. Yours may be different.

There was no mouse when GPM initialised at startup until rc.modules was correctly un-commented.

The strange thing was, that in my case, not editing the appropriate modules in rc.modules, resulted in the some movement when X was running, just the movement was erratic, and not in the direction wanted. The buttons fired themselves intermittently, and was uncontrolable.

Cheers!
 
Old 12-27-2005, 12:12 AM   #8
venom96737
LQ Newbie
 
Registered: Dec 2005
Posts: 9

Original Poster
Rep: Reputation: 0
i found it

well i was poking around and i found xorg.conf in the x serv but pico is saying its not a file but im typing it correct so i guess its just user error ill try again logging into xserv as root and saving it from there dont worry the box isnt on the net so i have no real threat and see what happens
 
Old 12-27-2005, 12:22 AM   #9
Bruce Hill
HCL Maintainer
 
Registered: Jun 2003
Location: McCalla, AL, USA
Distribution: Arch, Gentoo
Posts: 6,941

Rep: Reputation: 129Reputation: 129
From a Slackware-10.2 system:
Code:
bruce@silas:~$ locate xorg.conf
/etc/X11/xorg.conf-vesa
/etc/X11/xorg.conf
/etc/X11/xorg.conf-fbdev
/usr/X11R6/lib/X11/doc/html/xorg.conf.5.html
/usr/X11R6/man/man5/xorg.conf.5x.gz
That second one is the file you want. If you
need to know more about it, read the manual
page by issuing "man xorg.conf"
 
Old 12-27-2005, 12:38 AM   #10
venom96737
LQ Newbie
 
Registered: Dec 2005
Posts: 9

Original Poster
Rep: Reputation: 0
i know the error

i know now what i was doing wrong i wasnt including the partition it was located on thats all i have no problem now and its edited but it still didnt clear the problem im trying the rc.module thing now
 
Old 12-27-2005, 07:52 AM   #11
venom96737
LQ Newbie
 
Registered: Dec 2005
Posts: 9

Original Poster
Rep: Reputation: 0
i stand corected

chinaman your fix worked great i rebooted the machine all the way up and wham the mouse started moving thanx for all the help i really appreciate it
 
Old 12-27-2005, 09:14 AM   #12
Bruce Hill
HCL Maintainer
 
Registered: Jun 2003
Location: McCalla, AL, USA
Distribution: Arch, Gentoo
Posts: 6,941

Rep: Reputation: 129Reputation: 129
Great! Glad you got it working. Keep on Slackin'
 
Old 05-23-2006, 04:03 AM   #13
Cynar
LQ Newbie
 
Registered: May 2004
Distribution: Slackware-current
Posts: 21

Rep: Reputation: 15
This post helped me alot along with another post saying I had to upgrade my kernel for my wireless mouse to work. I also had to have OHCI enabled in the new kernel since I have a nforce board. Just wanted to say thanks.
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

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
disconnect USB mouse data from the mouse pointer Yeronimo Programming 0 04-07-2005 04:26 AM
Cannot change USB mouse back to PS/2 mouse under Mandrake 10 RedUcer Linux - Hardware 11 10-27-2004 02:40 AM
How do you configure to mouses, a laptop mouse and a Logitc USB Mouse dbratton Linux - Hardware 8 03-06-2004 06:02 PM
PS/2 mouse did not work after temp removal of USB mouse edwardp Linux - Hardware 1 09-06-2003 05:57 PM
USB mouse, keyboard, hid, console mouse problems jqcaducifer Linux - General 1 08-05-2003 10:43 AM

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

All times are GMT -5. The time now is 03:55 PM.

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