Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
No mouse detected(newbie)
View unanswered posts
View posts from last 24 hours

 
Reply to topic    Gentoo Forums Forum Index Kernel & Hardware
View previous topic :: View next topic  
Author Message
linoleum
Tux's lil' helper
Tux's lil' helper


Joined: 15 Nov 2004
Posts: 129

PostPosted: Mon Nov 15, 2004 5:24 pm    Post subject: No mouse detected(newbie) Reply with quote

Hi,
I've just installed gentoo 2004.2 on a compaq evo n1020v. Everything seems ok, including touchpad, but I cannot get the mouse working. Actually it seems that mouse is not detected at all

>>>cat /proc/bus/input/devices

I: Bus=0011 Vendor=0001 Product=0001 Version=ab41
N: Name="AT Translated Set 2 keyboard"
P: Phys=isa0060/serio0/input0
H: Handlers=kbd
B: EV=120013
B: KEY=4 2000000 3802078 f840d001 f2ffffdf ffefffff ffffffff fffffffe
B: MSC=10
B: LED=7

I: Bus=0011 Vendor=0002 Product=0007 Version=0000
N: Name="SynPS/2 Synaptics TouchPad"
P: Phys=isa0060/serio1/input0
H: Handlers=mouse0 ts0
B: EV=b
B: KEY=6420 0 7000f 0 0 0 0 0 0 0 0
B: ABS=11000003


I've read around but it seems that in general users have problems with touchpad but not with mouse. The strange (of course to me) thing is that in the environmente created by the LIVEcd the mouse works (I've tryied to copy the config of the LIVEcd with no success).
Any suggestions about what I should check?
Thanks
angelo
Back to top
View user's profile Send private message
Minox
Apprentice
Apprentice


Joined: 12 Apr 2004
Posts: 188
Location: Germany / Munich

PostPosted: Wed Nov 17, 2004 12:47 pm    Post subject: Reply with quote

What kind of mouse is it? USB, PS2?
_________________
:!: proud to be 100% M$ free :!:
Back to top
View user's profile Send private message
linoleum
Tux's lil' helper
Tux's lil' helper


Joined: 15 Nov 2004
Posts: 129

PostPosted: Wed Nov 17, 2004 1:27 pm    Post subject: Reply with quote

Thanks for your reply,
it is a ps/2 mouse. Actually I realized yesterday that I could use an usb one, this morning I bought one installed it and averything works. Of course I'm still puzzled about why the ps/2 doesn't work ...
angelo
Back to top
View user's profile Send private message
Minox
Apprentice
Apprentice


Joined: 12 Apr 2004
Posts: 188
Location: Germany / Munich

PostPosted: Wed Nov 17, 2004 1:39 pm    Post subject: Reply with quote

Ok. Maybe, when the touchpad is activated the mouse support on the auxilliary device is disabled. I've recon'd sth. like that at work. Try to disable the touchpad in BIOS and maybe then your mouse will work.
_________________
:!: proud to be 100% M$ free :!:
Back to top
View user's profile Send private message
linoleum
Tux's lil' helper
Tux's lil' helper


Joined: 15 Nov 2004
Posts: 129

PostPosted: Wed Nov 17, 2004 5:16 pm    Post subject: Reply with quote

Actually the BIOS doesn't seem to allow me to do that. Is it always the case that you can disable touchpad from it?
thanks
angelo
Back to top
View user's profile Send private message
jsh
n00b
n00b


Joined: 18 Nov 2004
Posts: 5

PostPosted: Thu Nov 18, 2004 3:32 pm    Post subject: Reply with quote

i must say i have the same problem except i cannot find my usb mouse
in the boot i can see that it autodetects it but i cannot use it

some newbie help appriciated!
_________________
whoo
Back to top
View user's profile Send private message
sunoterra
n00b
n00b


Joined: 04 Jun 2004
Posts: 43
Location: Michigan

PostPosted: Fri Nov 26, 2004 4:34 pm    Post subject: Reply with quote

jsh wrote:

i must say i have the same problem except i cannot find my usb mouse
in the boot i can see that it autodetects it but i cannot use it


hey...

uh, what kind of setup you got going here? desktop : laptop .
_________________
l33t/n00b
Back to top
View user's profile Send private message
andyknownasabu
Apprentice
Apprentice


Joined: 06 Feb 2003
Posts: 281
Location: Zurich, Switzerland

PostPosted: Sun Nov 28, 2004 4:09 pm    Post subject: Re: No mouse detected(newbie) Reply with quote

linoleum wrote:
Hi,
I've just installed gentoo 2004.2 on a compaq evo n1020v. Everything seems ok, including touchpad, but I cannot get the mouse working. Actually it seems that mouse is not detected at all

>>>cat /proc/bus/input/devices

I: Bus=0011 Vendor=0001 Product=0001 Version=ab41
N: Name="AT Translated Set 2 keyboard"
P: Phys=isa0060/serio0/input0
H: Handlers=kbd
B: EV=120013
B: KEY=4 2000000 3802078 f840d001 f2ffffdf ffefffff ffffffff fffffffe
B: MSC=10
B: LED=7

I: Bus=0011 Vendor=0002 Product=0007 Version=0000
N: Name="SynPS/2 Synaptics TouchPad"
P: Phys=isa0060/serio1/input0
H: Handlers=mouse0 ts0
B: EV=b
B: KEY=6420 0 7000f 0 0 0 0 0 0 0 0
B: ABS=11000003


I've read around but it seems that in general users have problems with touchpad but not with mouse. The strange (of course to me) thing is that in the environmente created by the LIVEcd the mouse works (I've tryied to copy the config of the LIVEcd with no success).
Any suggestions about what I should check?
Thanks
angelo

First check if you have PS/2 mouse support in your kernel:
Code:
CONFIG_INPUT_MOUSEDEV=y
CONFIG_INPUT_MOUSEDEV_PSAUX=y
CONFIG_INPUT_MOUSE=y
CONFIG_MOUSE_PS2=y

Then try to enable your ps/2 mouse instead of the touchpad in your xorg.conf (use something like the following):
Code:
Section "InputDevice"
        Identifier  "Mouse"
        Driver      "mouse"
        Option      "Device"        "/dev/psaux"
        Option      "Protocol"      "imps/2"
        Option      "Buttons"       "5"
        Option      "ZAxisMapping"  "4 5"
        Option      "ChordMiddle"
EndSection

If you can use your mouse try to combine the two configurations by enabling your touchpad and adding the following options to your xorg.conf
ServerLayout section:
Code:
Section "ServerLayout"
        Identifier      "Default Layout"
        Screen          "Default Screen"
        InputDevice     "Keyboard"      "CoreKeyboard"
        InputDevice     "Touchpad"      "CorePointer"
        InputDevice     "Mouse"         "SendCoreEvents"
EndSection
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Kernel & Hardware All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum