Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
mouse problem
View unanswered posts
View posts from last 24 hours

Goto page 1, 2  Next  
Reply to topic    Gentoo Forums Forum Index Kernel & Hardware
View previous topic :: View next topic  
Author Message
shay_u
n00b
n00b


Joined: 24 Sep 2004
Posts: 62
Location: /home/israel

PostPosted: Sat Nov 10, 2007 8:26 pm    Post subject: mouse problem Reply with quote

hi ,

i have strange issue. it's the first time im having it and i have installed gentoo many times before.
my mouse is not detected. even in console (gpm). when i try to do cat /dev/input/mice or dev/psaux i dont get any coments.

my xorg.conf is just fine. all the mouse entries are pointing to /dev/input/mice (i have tried also /dev/psaux).
next thing i did is to boot from a live knopix cd to check if it's only the jentoo problem. and it does. knopix is able to recognize the mouse.
next thing - i have copied those mouse enteries from the knopix live cd file to the gentoo xorg file.
still , the mouse doesnt work.
i have tried to rebuild xorg-server and xf86-input-mouse. still , nothing.
final step. i have checked the kernel to see if i have enabled all the usb stuff in it.
and to be sure that i have done all - i have compiled it again.
no , the mouse isn't working so far and i absolutly have no idea why.
i would appriciate if somone could give me some tips about.

by the way , its a microsoft usb optical mouse with a wheel. and i have tried also to connect it via ps/2 adapter and it doesnt work either.

thanks ,

shay.
Back to top
View user's profile Send private message
d2_racing
Bodhisattva
Bodhisattva


Joined: 25 Apr 2005
Posts: 13047
Location: Ste-Foy,Canada

PostPosted: Sat Nov 10, 2007 10:43 pm    Post subject: Reply with quote

CAn you post your emerge --info plz ?
Back to top
View user's profile Send private message
WakkaDojo
Apprentice
Apprentice


Joined: 26 Sep 2007
Posts: 174
Location: Massachusetts

PostPosted: Sat Nov 10, 2007 11:09 pm    Post subject: Reply with quote

Have you upgraded to kernel 2.6.23 recently? The usb mouse section has been moved so make oldconfig doesn't work for it. You need to enable it under HID (Human interface devices).
Back to top
View user's profile Send private message
shay_u
n00b
n00b


Joined: 24 Sep 2004
Posts: 62
Location: /home/israel

PostPosted: Sun Nov 11, 2007 9:09 am    Post subject: Reply with quote

sorry , i dont see how i can post that output if the mouse isnt working with gpm.... (:

and about my kernel , its 2.6.22-r9 , and the hid is currently enabled.
Back to top
View user's profile Send private message
WakkaDojo
Apprentice
Apprentice


Joined: 26 Sep 2007
Posts: 174
Location: Massachusetts

PostPosted: Sun Nov 11, 2007 3:10 pm    Post subject: Reply with quote

Okay well in that case I don't know what can help, but I'm sure someone else does.

If you have a USB drive you can redirect standard output to a file, for instance, if the USB drive is mounted at /mnt/usb:
Code:
emerge --info >> /mnt/usb/emerge_info

then post the output from another computer.

You could also post the output directly from your computer using the ttyX terminals and links/lynx
Back to top
View user's profile Send private message
garbaty
n00b
n00b


Joined: 08 Jan 2006
Posts: 19
Location: Poland

PostPosted: Sun Nov 11, 2007 3:17 pm    Post subject: Reply with quote

hi, same problem here. I've tried different settings in xorg.conf (/dev/psaux /dev/input/mice /dev/input/mouse0 ...) without any result. mouse is displayed in lsusb, and its working for sure (checked with cat /dev/input/mouse1), so i figure it must be Xserver fault.
Back to top
View user's profile Send private message
shay_u
n00b
n00b


Joined: 24 Sep 2004
Posts: 62
Location: /home/israel

PostPosted: Sun Nov 11, 2007 7:50 pm    Post subject: Reply with quote

if i check the xorg log file it tells me the mouse driver loaded. so i dont know what causes the problem.
iv'e tried many mouse configuration trough the xorg.conf file. none of them works.
Back to top
View user's profile Send private message
queen
Veteran
Veteran


Joined: 19 Jul 2005
Posts: 1642

PostPosted: Sun Nov 11, 2007 10:05 pm    Post subject: Reply with quote

shay_u wrote:
if i check the xorg log file it tells me the mouse driver loaded. so i dont know what causes the problem.
iv'e tried many mouse configuration trough the xorg.conf file. none of them works.


This is my xorg.conf related to the mouse:

Code:
Section "InputDevice"

# Identifier and driver

    Identifier  "Mouse1"
    Driver      "mouse"

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

     Option      "Device"        "/dev/input/mice"
     Option   "CorePointer"
Option "Protocol"   "PS/2"

# Emulate3Buttons is an option for 2-button mice
# Emulate3Timeout is the timeout in milliseconds (default is 50ms)

    Option      "Emulate3Buttons"
    Option      "Emulate3Timeout"       "50"
    Option      "ZAxisMapping"          "4 5"
EndSection

the ps2 in my case is the touchpad of the laptop.

kernel settings:

Code:
grep -i mouse /usr/src/linux/.config
CONFIG_INPUT_MOUSEDEV=y
CONFIG_INPUT_MOUSEDEV_PSAUX=y
CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024
CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768
CONFIG_INPUT_MOUSE=y
CONFIG_MOUSE_PS2=m


usb settings in the kernel:
Code:
carin # grep -i usb /usr/src/linux/.config|grep -i hid
CONFIG_USB_HID=m
CONFIG_USB_HIDINPUT=y
# CONFIG_USB_HIDINPUT_POWERBOOK is not set
# CONFIG_USB_HIDDEV is not set
# USB HID Boot Protocol drivers
# CONFIG_USB_PHIDGET is not set
carin carin # grep -i usb /usr/src/linux/.config|grep -i ohci
CONFIG_USB_ARCH_HAS_OHCI=y
CONFIG_USB_OHCI_HCD=m
# CONFIG_USB_OHCI_BIG_ENDIAN is not set
CONFIG_USB_OHCI_LITTLE_ENDIAN=y
carin carin # grep -i usb /usr/src/linux/.config|grep -i uhci
CONFIG_USB_UHCI_HCD=m

grep -i usb /usr/src/linux/.config|grep -i ehci
CONFIG_USB_ARCH_HAS_EHCI=y
CONFIG_USB_EHCI_HCD=m
# CONFIG_USB_EHCI_SPLIT_ISO is not set
# CONFIG_USB_EHCI_ROOT_HUB_TT is not set
# CONFIG_USB_EHCI_TT_NEWSCHED is not set



hope this helps.
Back to top
View user's profile Send private message
garbaty
n00b
n00b


Joined: 08 Jan 2006
Posts: 19
Location: Poland

PostPosted: Sun Nov 11, 2007 10:38 pm    Post subject: Reply with quote

i'm affraid it didn't. Only diff in mine config is that I use synaptics.
Back to top
View user's profile Send private message
shay_u
n00b
n00b


Joined: 24 Sep 2004
Posts: 62
Location: /home/israel

PostPosted: Mon Nov 12, 2007 12:28 pm    Post subject: Reply with quote

i have checked my settings against yours. it's look the same.
so i dont know what else to do...
Back to top
View user's profile Send private message
garbaty
n00b
n00b


Joined: 08 Jan 2006
Posts: 19
Location: Poland

PostPosted: Mon Nov 12, 2007 12:35 pm    Post subject: Reply with quote

i checked my update logs, and now im pretty sure mouse stopped working after emerging new X.
Back to top
View user's profile Send private message
nixnut
Bodhisattva
Bodhisattva


Joined: 09 Apr 2004
Posts: 10974
Location: the dutch mountains

PostPosted: Mon Nov 12, 2007 5:17 pm    Post subject: Reply with quote

Moved from Installing Gentoo to Kernel & Hardware.
not about getting gentoo installed, so moved here.
_________________
Please add [solved] to the initial post's subject line if you feel your problem is resolved. Help answer the unanswered

talk is cheap. supply exceeds demand
Back to top
View user's profile Send private message
queen
Veteran
Veteran


Joined: 19 Jul 2005
Posts: 1642

PostPosted: Mon Nov 12, 2007 6:19 pm    Post subject: Reply with quote

garbaty wrote:
i checked my update logs, and now im pretty sure mouse stopped working after emerging new X.


I upgraded yesterday x through emerge world. And it works on my side. Looks like it's a X bug.
Back to top
View user's profile Send private message
queen
Veteran
Veteran


Joined: 19 Jul 2005
Posts: 1642

PostPosted: Mon Nov 12, 2007 6:45 pm    Post subject: Reply with quote

shay_u wrote:
i have checked my settings against yours. it's look the same.
so i dont know what else to do...


My suggestions:
1. Try another mouse.
2. Try to post xorg.conf maybe 1 line is missing and you don't notice it. copy to disk on key and post from other computer.
3. Have you tried all /dev/input/mice /dev/input/mouse0 /dev/input/mouse1 or whatever you have there?
4. Send the output of
Code:
grep EE /var/log/Xorg.0.log

5.
Code:
grep WW /var/log/Xorg.0.log

6. In the protocol (in xorg) you can try Auto or Microsoft. This is taken from this link:
http://linux.die.net/man/4/mouse-driver. Don't forget to restart X if you change the protocol.
7. Here is the output of
Code:
 grep -i mouse /var/log/Xorg.0.log

(**) |-->Input Device "Mouse1"
(**) |-->Input Device "Mouse2"
(**) |-->Input Device "Mouse3"
(II) LoadModule: "mouse"
(II) Loading /usr/lib/xorg/modules/input//mouse_drv.so
(II) Module mouse: vendor="X.Org Foundation"
(==) intel(0): Silken mouse enabled
(**) Mouse1: Device: "/dev/input/mice"
(**) Mouse1: Protocol: "PS/2"
(**) Mouse1: Core Pointer
(**) Mouse1: Emulate3Buttons, Emulate3Timeout: 50
(**) Mouse1: ZAxisMapping: buttons 4 and 5
(**) Mouse1: Buttons: 9
(**) Mouse1: Sensitivity: 1
(**) Mouse2: Device: "/dev/input/mice"
(**) Mouse2: Protocol: "Auto"
(**) Mouse2: always reports core events
(==) Mouse2: Emulate3Buttons, Emulate3Timeout: 50
(**) Mouse2: ZAxisMapping: buttons 4 and 5
(**) Mouse2: Buttons: 9
(**) Mouse2: Sensitivity: 1
(**) Mouse3: Device: "/dev/input/mice"
(**) Mouse3: Protocol: "Auto"
(**) Mouse3: always reports core events
(==) Mouse3: Emulate3Buttons, Emulate3Timeout: 50
(**) Mouse3: ZAxisMapping: buttons 4 and 5
(**) Mouse3: Buttons: 10
(**) Mouse3: Sensitivity: 1
(II) XINPUT: Adding extended input device "Mouse3" (type: MOUSE)
(II) XINPUT: Adding extended input device "Mouse2" (type: MOUSE)
(II) XINPUT: Adding extended input device "Mouse1" (type: MOUSE)
(II) Mouse1: ps2EnableDataReporting: succeeded
(--) Mouse2: PnP-detected protocol: "ExplorerPS/2"
(II) Mouse2: ps2EnableDataReporting: succeeded
(--) Mouse3: PnP-detected protocol: "ExplorerPS/2"
(II) Mouse3: ps2EnableDataReporting: succeeded
Try to compare to yours. The 3rd mouse I have in my xorg is a mouse that I tried to configure once.
8. Last resort to downgrade X.

I assume that all modules in the kernel are loaded correctly.
Back to top
View user's profile Send private message
fronty
n00b
n00b


Joined: 11 Nov 2007
Posts: 6

PostPosted: Tue Nov 13, 2007 4:43 pm    Post subject: Reply with quote

Is mouse working in X? Can you click buttons, &c, but it just doesn't show cursor? I have right now that problem. :)
Back to top
View user's profile Send private message
garbaty
n00b
n00b


Joined: 08 Jan 2006
Posts: 19
Location: Poland

PostPosted: Wed Nov 14, 2007 3:23 am    Post subject: Reply with quote

fronty wrote:
Is mouse working in X? Can you click buttons, &c, but it just doesn't show cursor? I have right now that problem. :)


te cursor is visible, touchpad is working fine, mouse is working on any liveCD, just new X seems not to notice it at all.
Back to top
View user's profile Send private message
reksav
Apprentice
Apprentice


Joined: 09 Mar 2005
Posts: 165
Location: rochester, ny

PostPosted: Fri Nov 16, 2007 1:07 am    Post subject: Reply with quote

glad im not the only one with this problem... any solutions yet?
Back to top
View user's profile Send private message
reksav
Apprentice
Apprentice


Joined: 09 Mar 2005
Posts: 165
Location: rochester, ny

PostPosted: Fri Nov 16, 2007 1:39 am    Post subject: Reply with quote

i dont know if this is the prob you guys are having or not but my Xorg log shows...

Code:
(**) Option "CorePointer"
(**) Mouse0: always reports core events
(EE) Mouse0: cannot open input pEvdev
(II) UnloadModule: "evdev"
(EE) PreInit returned NULL for "Mouse0"


my mouse setup in my xorg.conf...

Code:
Section "InputDevice"
    Identifier      "Mouse0"
    Driver          "evdev"
    Option          "Name" "Microsoft Microsoft Optical Mouse with Tilt Wheel"
    Option          "DIALRelativeAxisButtons" "7 6"
EndSection


it worked prior to one of the updates, now... shows up, nothin though
Back to top
View user's profile Send private message
padoor
Advocate
Advocate


Joined: 30 Dec 2005
Posts: 4185
Location: india

PostPosted: Fri Nov 16, 2007 1:49 am    Post subject: Reply with quote

both of you re emerge xserver again and xf86-input- mouse and evdev and video driver. in that order.
it can help you if your /dev has the nodes
try etc-update
update udev if /dev missing the mouse nodes.
new evdev and udev has come in portage.
you can even try renaming the xorg.conf. it can work without that.
good luck
_________________
reach out a little bit more to catch it (DON'T BELIEVE the advocate part under my user name)
Back to top
View user's profile Send private message
reksav
Apprentice
Apprentice


Joined: 09 Mar 2005
Posts: 165
Location: rochester, ny

PostPosted: Fri Nov 16, 2007 3:24 am    Post subject: Reply with quote

well i tried your advice... same issues :?
Back to top
View user's profile Send private message
kshade
n00b
n00b


Joined: 13 Jan 2004
Posts: 60
Location: Germany

PostPosted: Fri Nov 16, 2007 9:32 am    Post subject: Reply with quote

I had the same problem after emergeing x11-drivers/xf86-input-evdev-1.2.0. Downgrading to x11-drivers/xf86-input-evdev-1.1.5-r2 solved the problem for me.
_________________
Get an operating system!
Back to top
View user's profile Send private message
reksav
Apprentice
Apprentice


Joined: 09 Mar 2005
Posts: 165
Location: rochester, ny

PostPosted: Fri Nov 16, 2007 10:36 am    Post subject: Reply with quote

thanks for the info, downgrading worked :D
Back to top
View user's profile Send private message
d2_racing
Bodhisattva
Bodhisattva


Joined: 25 Apr 2005
Posts: 13047
Location: Ste-Foy,Canada

PostPosted: Fri Nov 16, 2007 12:33 pm    Post subject: Reply with quote

Can you edit your first post and add [SOLVED] plz :)
Back to top
View user's profile Send private message
Edward Nigma
n00b
n00b


Joined: 05 Jul 2006
Posts: 24
Location: /LE

PostPosted: Fri Nov 16, 2007 12:50 pm    Post subject: Reply with quote

I think it's not a good idea to mark this post solved.
A downgrade doesn't solve the problem. The problem still exists in version 1.2.0.
Imho downgrades never correct the defects.
Back to top
View user's profile Send private message
d2_racing
Bodhisattva
Bodhisattva


Joined: 25 Apr 2005
Posts: 13047
Location: Ste-Foy,Canada

PostPosted: Fri Nov 16, 2007 12:51 pm    Post subject: Reply with quote

Yeah you are right...:)
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
Goto page 1, 2  Next
Page 1 of 2

 
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