View previous topic :: View next topic |
Author |
Message |
linoleum Tux's lil' helper
Joined: 15 Nov 2004 Posts: 129
|
Posted: Mon Nov 15, 2004 5:24 pm Post subject: No mouse detected(newbie) |
|
|
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 |
|
|
Minox Apprentice
Joined: 12 Apr 2004 Posts: 188 Location: Germany / Munich
|
Posted: Wed Nov 17, 2004 12:47 pm Post subject: |
|
|
What kind of mouse is it? USB, PS2? _________________ proud to be 100% M$ free |
|
Back to top |
|
|
linoleum Tux's lil' helper
Joined: 15 Nov 2004 Posts: 129
|
Posted: Wed Nov 17, 2004 1:27 pm Post subject: |
|
|
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 |
|
|
Minox Apprentice
Joined: 12 Apr 2004 Posts: 188 Location: Germany / Munich
|
Posted: Wed Nov 17, 2004 1:39 pm Post subject: |
|
|
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 |
|
|
linoleum Tux's lil' helper
Joined: 15 Nov 2004 Posts: 129
|
Posted: Wed Nov 17, 2004 5:16 pm Post subject: |
|
|
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 |
|
|
jsh n00b
Joined: 18 Nov 2004 Posts: 5
|
Posted: Thu Nov 18, 2004 3:32 pm Post subject: |
|
|
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 |
|
|
sunoterra n00b
Joined: 04 Jun 2004 Posts: 43 Location: Michigan
|
Posted: Fri Nov 26, 2004 4:34 pm Post subject: |
|
|
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 |
|
|
andyknownasabu Apprentice
Joined: 06 Feb 2003 Posts: 281 Location: Zurich, Switzerland
|
Posted: Sun Nov 28, 2004 4:09 pm Post subject: Re: No mouse detected(newbie) |
|
|
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 |
|
|
|