View previous topic :: View next topic |
Author |
Message |
Dennis Bolser n00b
Joined: 23 Aug 2005 Posts: 57
|
Posted: Thu Aug 25, 2005 11:07 pm Post subject: Xorg configure, no mouse?[Solved] |
|
|
When i do Xorg -configure it says it cannot detect my mouse, it tells me to edit the file, but what do i change to make it work?
When i open the file i find the input device place where my mouse is but i dont know what to change to make it work.
Can anyone help?
Last edited by Dennis Bolser on Fri Aug 26, 2005 12:14 am; edited 1 time in total |
|
Back to top |
|
|
evster Guru
Joined: 12 Jul 2005 Posts: 367 Location: Waterloo, Ontario, Canada
|
Posted: Thu Aug 25, 2005 11:10 pm Post subject: |
|
|
What is your section for mouse? |
|
Back to top |
|
|
Roguelazer Veteran
Joined: 10 Feb 2003 Posts: 1233 Location: San Francisco, CA
|
Posted: Thu Aug 25, 2005 11:11 pm Post subject: |
|
|
At a console, do "cat /dev/input/mice" and move your mouse around. If you see garbage, type Ctrl-C to stop it and know that linux likes your mouse. If you don't see anything, then Linux can't see your mouse at all, and you have a problem (probably no PS/2 or USB drivers in your kernel). _________________ Registered Linux User #263260 |
|
Back to top |
|
|
Dennis Bolser n00b
Joined: 23 Aug 2005 Posts: 57
|
Posted: Thu Aug 25, 2005 11:15 pm Post subject: |
|
|
alright, i did cat /dev/input/mouse0, moved my mouse, nothing happened.
do i have to go back into the kernel config and find a usb mouse driver or somthing? |
|
Back to top |
|
|
Roguelazer Veteran
Joined: 10 Feb 2003 Posts: 1233 Location: San Francisco, CA
|
Posted: Thu Aug 25, 2005 11:16 pm Post subject: |
|
|
Yes _________________ Registered Linux User #263260 |
|
Back to top |
|
|
Dennis Bolser n00b
Joined: 23 Aug 2005 Posts: 57
|
Posted: Thu Aug 25, 2005 11:24 pm Post subject: |
|
|
I did that, found that i already had PS/2 and USB human interface thing checked, not as modules, and i looked for anyting else that would relate but couldnt find anything.
Any ideas?
When i change somthing after using, make menuconfig, do i have to recompile the kernel? |
|
Back to top |
|
|
evster Guru
Joined: 12 Jul 2005 Posts: 367 Location: Waterloo, Ontario, Canada
|
Posted: Thu Aug 25, 2005 11:36 pm Post subject: |
|
|
Dennis Bolser wrote: | alright, i did cat /dev/input/mouse0, moved my mouse, nothing happened. |
Did you try Code: | cat /dev/input/mice |
|
|
Back to top |
|
|
Dennis Bolser n00b
Joined: 23 Aug 2005 Posts: 57
|
Posted: Thu Aug 25, 2005 11:47 pm Post subject: |
|
|
awesome, that worked, cat /dev/input/mice, thanks ! |
|
Back to top |
|
|
Roguelazer Veteran
Joined: 10 Feb 2003 Posts: 1233 Location: San Francisco, CA
|
Posted: Thu Aug 25, 2005 11:50 pm Post subject: |
|
|
Darnit, I missed that typo. Okay, so you need to set up your input section to look like this:
Code: |
Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "IMPS/2"
Option "Device" "/dev/input/mice"
Option "ZAxisMapping" "4 5"
EndSection
|
Also, your ServerLayout section must contain this line:
Code: |
InputDevice "Mouse0" "CorePointer"
|
_________________ Registered Linux User #263260 |
|
Back to top |
|
|
Dennis Bolser n00b
Joined: 23 Aug 2005 Posts: 57
|
Posted: Fri Aug 26, 2005 12:13 am Post subject: |
|
|
thanks for all the help! got it to work |
|
Back to top |
|
|
|