LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Laptop and Netbook
User Name
Password
Linux - Laptop and Netbook Having a problem installing or configuring Linux on your laptop? Need help running Linux on your netbook? This forum is for you. This forum is for any topics relating to Linux and either traditional laptops or netbooks (such as the Asus EEE PC, Everex CloudBook or MSI Wind).

Notices


Reply
  Search this Thread
Old 11-03-2004, 06:10 AM   #1
Jodel
LQ Newbie
 
Registered: Nov 2004
Posts: 7

Rep: Reputation: 0
Mouse and touchpad in Mandrake 10.1


Hi,
I have just upgraded from Mandrake 10.0 to 10.1 . In all previous versions of mandrake I have used on my notebook (a Compaq Evo N1020v) both the mouse and the touch pad worked. Since up grading only the trouch pad works. I have tried all options in the mouse configuration programme but to no avail. I suspect the problem relates to the change from Xfree to Xorg.
Any suggestions as to how I can get the mouse back in action?
Any one with a working xorg.conf for this machine?
Tom
 
Old 01-08-2005, 06:49 PM   #2
bobterri
Member
 
Registered: Feb 2002
Location: Davenport, IA
Distribution: LinuxMint, Sam-Linux
Posts: 149

Rep: Reputation: 15
Amen! I got the same problem! I'd like to have my touchpad and an optical wheel mouse working together.
 
Old 01-10-2005, 03:06 AM   #3
Jodel
LQ Newbie
 
Registered: Nov 2004
Posts: 7

Original Poster
Rep: Reputation: 0
Hi,
I still have not found the answer, although I haven't tried too hard in the last few weeks. When I get it solved I will post the answer.
Tom
 
Old 01-10-2005, 08:16 PM   #4
bobterri
Member
 
Registered: Feb 2002
Location: Davenport, IA
Distribution: LinuxMint, Sam-Linux
Posts: 149

Rep: Reputation: 15
Well, I did sort of get things working.

I replaced:

Section "InputDevice"
Identifier "SynapticsMouse1"
Driver "synaptics"
Option "Protocol" "auto-dev"
Option "Device" "/dev/input/mice"
Option "MinSpeed" "0.06"
Option "MaxSpeed" "0.12"
Option "BottomEdge" "4200"
Option "SHMConfig" "on"
Option "LeftEdge" "1700"
Option "FingerLow" "25"
Option "MaxTapTime" "180"
Option "MaxTapMove" "220"
Option "FingerHigh" "30"
Option "VertScrollDelta" "100"
Option "AccelFactor" "0.0010"
Option "TopEdge" "1700"
Option "RightEdge" "5300"
EndSection

with:

Section "InputDevice"
Identifier "Mouse1"
Driver "mouse"
Option "Protocol" "IMPS/2"
Option "Device" "/dev/mouse"
#Option "Device" "/dev/psaux"
Option "ZAxisMapping" "4 5"
EndSection

and now I have my touchpad working and my optical mouse. However the touchpad doesn't have the "tap" function. I'm checking into it.
 
Old 01-10-2005, 09:58 PM   #5
bobterri
Member
 
Registered: Feb 2002
Location: Davenport, IA
Distribution: LinuxMint, Sam-Linux
Posts: 149

Rep: Reputation: 15
OK, I think I solved it.

I added InputDevice "Mouse1" "SendCoreEvents" and InputDevice "SynapticsMouse1" in the "ServerLayout" section. See below.



Section "ServerLayout"
Identifier "layout1"
InputDevice "Keyboard1" "CoreKeyboard"
InputDevice "SynapticsMouse1" "CorePointer"
InputDevice "Mouse1" "SendCoreEvents"
Screen "screen1"
EndSection
 
Old 01-12-2005, 03:09 PM   #6
jcrozi
LQ Newbie
 
Registered: Jan 2005
Distribution: Mandrake 10
Posts: 4

Rep: Reputation: 0
I am very new to linux (installed several times, but never actually used it), and am having this same problem. Where do I enter this text you have posted?

Thanks
 
Old 01-12-2005, 04:38 PM   #7
bobterri
Member
 
Registered: Feb 2002
Location: Davenport, IA
Distribution: LinuxMint, Sam-Linux
Posts: 149

Rep: Reputation: 15
Well, first open a terminal and type cat /etc/X11/xorg.conf and then post the contents of that file in a reply. Then we'll go from there.

By the way, what linus distro are you using (mandrake, suse, fedora, etc.)?
 
Old 01-12-2005, 07:40 PM   #8
jcrozi
LQ Newbie
 
Registered: Jan 2005
Distribution: Mandrake 10
Posts: 4

Rep: Reputation: 0
I am using Mandrake 10 so I guess I would need to edit xfree.conf right? Thanks!
 
Old 01-12-2005, 09:37 PM   #9
bobterri
Member
 
Registered: Feb 2002
Location: Davenport, IA
Distribution: LinuxMint, Sam-Linux
Posts: 149

Rep: Reputation: 15
Yes, it would be XF86Config. Send me the contents of that file.
 
Old 01-13-2005, 03:51 AM   #10
Jodel
LQ Newbie
 
Registered: Nov 2004
Posts: 7

Original Poster
Rep: Reputation: 0
Hi,
I changed to a usb mouse and now both touch pad and mouse work.
I have given up on the ps2 mouse. I tried lots of "Device" options ie
/dev/mice /dev mouse0 /input/mice /dev/psaux etc
I also did a cat of each but in all cases only the touchpad showed a response in the terminal window.
I also tried all the protocols to no avail.
I wonder should some module be loaded to make the ps2 socket on the computer active??
Anyway usb is fine, but the ps2 worked in the previous versions of mandrake (and still works in Windows)

Tom
 
Old 01-13-2005, 08:38 PM   #11
jcrozi
LQ Newbie
 
Registered: Jan 2005
Distribution: Mandrake 10
Posts: 4

Rep: Reputation: 0
Here is what bobterri asked for:

(Note, I only included the sections with input devices.)

Section "InputDevice"
Identifier "Keyboard1"
Driver "Keyboard"
Option "XkbModel" "pc105"
Option "XkbLayout" "en_US"
Option "XkbOptions" ""
EndSection

Section "InputDevice"
Identifier "Mouse1"
Driver "mouse"
Option "Protocol" "IMPS/2"
Option "Device" "/dev/mouse"
Option "ZAxisMapping" "4 5"
EndSection


Looking at that file makes it seem like there is no informaton here for the other mouse.
 
Old 01-13-2005, 08:56 PM   #12
bobterri
Member
 
Registered: Feb 2002
Location: Davenport, IA
Distribution: LinuxMint, Sam-Linux
Posts: 149

Rep: Reputation: 15
I have the synaptics touchpad drivers intalled, so I add another "InputDevice" as follows:

Section "InputDevice"
Identifier "SynapticsMouse1"
Driver "synaptics"
Option "Protocol" "auto-dev"
Option "Device" "/dev/input/mice"
Option "MinSpeed" "0.06"
Option "MaxSpeed" "0.12"
Option "BottomEdge" "4200"
Option "SHMConfig" "on"
Option "LeftEdge" "1700"
Option "FingerLow" "25"
Option "MaxTapTime" "180"
Option "MaxTapMove" "220"
Option "FingerHigh" "30"
Option "VertScrollDelta" "100"
Option "AccelFactor" "0.0010"
Option "TopEdge" "1700"
Option "RightEdge" "5300"
EndSection

Don't delet the other one:

Section "InputDevice"
Identifier "Mouse1"
Driver "mouse"
Option "Protocol" "IMPS/2"
#Option "Device" "/dev/mouse"
Option "Device" "/dev/psaux"
Option "ZAxisMapping" "4 5"
EndSection

Keep them both and then in Section "ServerLayout" it should look like this:

Section "ServerLayout"
Identifier "layout1"
InputDevice "Keyboard1" "CoreKeyboard"
InputDevice "SynapticsMouse1" "CorePointer"
InputDevice "Mouse1" "SendCoreEvents"
Screen "screen1"
EndSection

I'm not sure what your section would look like for touchpad if you don't have the synaptic drivers. Maybe someone else can help out.
 
Old 01-13-2005, 10:14 PM   #13
jcrozi
LQ Newbie
 
Registered: Jan 2005
Distribution: Mandrake 10
Posts: 4

Rep: Reputation: 0
I know that the touchpad is a synaptic touchpad, so I wouldn't know why Mandrake did not pick it up as so. The mouse that works is the synaptics touchpad and not the ps2 mouse. I will give it a try sometime tomorrow and let you know what happens.
 
Old 01-18-2005, 10:53 PM   #14
ryeman
Member
 
Registered: Jan 2004
Location: Gainesville, GA
Distribution: Ubuntu
Posts: 118

Rep: Reputation: 15
Quote:
Originally posted by jcrozi
I know that the touchpad is a synaptic touchpad, so I wouldn't know why Mandrake did not pick it up as so. The mouse that works is the synaptics touchpad and not the ps2 mouse. I will give it a try sometime tomorrow and let you know what happens.
That's funny, I have the same problem. I found that if I go into the mandrake control panel and go to the mouse (under hardware), if I change my mouse to a "usb scroll mouse" and click on okay, it just closes the mouse config. If I go back into it, it shows "any ps/2 & usb mouse" selected. If I hit okay [again], I get a mouse test screen --- then my usb and synaptic mouse works!!!

Now, the only problem is that the config will not keep if I reboot.... any ideas??
 
Old 01-19-2005, 12:22 AM   #15
ryeman
Member
 
Registered: Jan 2004
Location: Gainesville, GA
Distribution: Ubuntu
Posts: 118

Rep: Reputation: 15
Talking All Right!

I found a fix

If you enable "udev" at boot, [under harddrake/services], then reboot...

..it should fix your usb mouse problems!!!
 
  


Reply



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
Touchpad mouse Mal495 Mandriva 1 05-23-2004 02:58 PM
Mandrake 10 CE Compaq Laptop Touchpad Mouse Issue KaiserSoze860 Mandriva 1 04-08-2004 11:28 AM
touchpad + USB mouse uncle_fungus1 Linux - Laptop and Netbook 1 03-19-2004 03:22 PM
Touchpad and mouse at the same time jitojo Linux - Newbie 1 01-25-2004 05:51 AM
touchpad mouse + usb mouse on laptop guild Libranet 1 11-28-2003 09:42 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Laptop and Netbook

All times are GMT -5. The time now is 04:50 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