 |
 |
 |
 |
| Laptop Help on using Fedora on laptops. LCD screens, APM, PCMCIA, etc. |

2008-05-14, 09:50 PM CDT
|
|
Registered User
|
|
Join Date: Dec 2007
Posts: 33

|
|
|
How do I enable 'tap to click' on mousepad?
Hi, I understand that the new default behaviour of the synaptic driver is to disable tap to click by defualt (Boo!). I learnt from here that all you have to do is add
Code:
Option "TapButton1" "1"
Option "TapButton2" "2"
to xorg.conf to get the tap to click working.
My xorg.conf file does not have any touchpad input devices. How do I add those two lines.
This is my xorg.conf
# Xorg configuration created by pyxf86config
Code:
Section "ServerLayout"
Identifier "Default Layout"
Screen 0 "Screen0" 0 0
InputDevice "Keyboard0" "CoreKeyboard"
EndSection
Section "InputDevice"
# keyboard added by rhpxl
Identifier "Keyboard0"
Driver "kbd"
Option "XkbModel" "pc105"
Option "XkbLayout" "us"
EndSection
Section "Device"
Identifier "Videocard0"
Driver "intel"
EndSection
Section "Screen"
Identifier "Screen0"
Device "Videocard0"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 24
EndSubSection
EndSection
|

2008-05-15, 05:19 AM CDT
|
|
Registered User
|
|
Join Date: May 2008
Posts: 34

|
|
This is how it should look like:
PHP Code:
Section "ServerLayout"
Identifier "Default Layout"
Screen 0 "Screen0" 0 0
InputDevice "Keyboard0" "CoreKeyboard"
InputDevice "TouchPad" "CorePointer"
EndSection
#Another section for Touchpad
Section "InputDevice"
Identifier "Touchpad"
Driver "synaptics"
Option "SendCoreEvents"
Option "Protocol" "auto-dev"
Option "TapButton1" "1"
Option "TapButton2" "2"
Option "TapButton3" "3"
Option "SHMConfig" "on"
EndSection
Also take a look at this for more details:
http://gentoo-wiki.com/HARDWARE_Synaptics_Touchpad
Cheers, D
Last edited by dejan.kitic; 2008-05-15 at 12:40 PM CDT.
Reason: Correct driver name is synaptics...Damn typos
|

2008-05-15, 11:49 AM CDT
|
|
Registered User
|
|
Join Date: May 2006
Posts: 2

|
|
The driver is synaptics and not synaptic.
|

2008-05-15, 01:47 PM CDT
|
|
Registered User
|
|
Join Date: Dec 2007
Posts: 33

|
|
Thanks both of you! I copied dejan.kitic's post and changed it to synaptics... mousepad now works great! This is what my xorg.conf file looks like now:
Code:
# Xorg configuration created by pyxf86config
Section "ServerLayout"
Identifier "Default Layout"
Screen 0 "Screen0" 0 0
InputDevice "Keyboard0" "CoreKeyboard"
InputDevice "TouchPad" "CorePointer"
EndSection
Section "InputDevice"
# keyboard added by rhpxl
Identifier "Keyboard0"
Driver "kbd"
Option "XkbModel" "pc105"
Option "XkbLayout" "us"
EndSection
#Another section for Touchpad
Section "InputDevice"
Identifier "Touchpad"
Driver "synaptics"
Option "SendCoreEvents"
Option "Protocol" "auto-dev"
Option "TapButton1" "1"
Option "TapButton2" "2"
Option "TapButton3" "3"
Option "SHMConfig" "on"
EndSection
Section "Device"
Identifier "Videocard0"
Driver "intel"
EndSection
Section "Screen"
Identifier "Screen0"
Device "Videocard0"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 24
EndSubSection
EndSection
|

2008-05-17, 11:41 AM CDT
|
|
Registered User
|
|
Join Date: Oct 2005
Location: Germany
Age: 25
Posts: 20

|
|
|
Is there a way of setting these values without using the xorg.conf file?
|

2008-05-18, 06:31 PM CDT
|
|
Registered User
|
|
Join Date: Dec 2007
Posts: 33

|
|
MrGroover, The only way I found for enabling tap to click without editing grub was adding a line to my grub menu file. Unfortunately it wasn't as good as editing xorg.conf because scrolling on the touchpad didnt' work.
You have to edit /boot/grub/menu.lst and add 'psmouse.proto=imps' to the line that begins with kernel. You can see this post. Again, the xorg.conf way worked better for me.
|

2008-05-19, 05:19 PM CDT
|
 |
Registered User
|
|
Join Date: Mar 2005
Location: Fairport, NY (Rochester)
Age: 31
Posts: 112

|
|
|
editing xorg.conf enabled tapping when X first starts, but if it goes to suspend, tapping doesn't work until X is restarted.
__________________
i'd rather be motoring
|

2008-05-19, 07:26 PM CDT
|
|
Registered User
|
|
Join Date: Dec 2007
Posts: 33

|
|
|
tscheez, I've noticed that too. anyone know of a fix?
|

2008-05-20, 12:34 PM CDT
|
|
Registered User
|
|
Join Date: Dec 2007
Posts: 33

|
|
|
Thansk dejan.kitic, touchpad works just peachy =)
|

2008-05-20, 01:28 PM CDT
|
|
Registered User
|
|
Join Date: Oct 2005
Location: Germany
Age: 25
Posts: 20

|
|
Quote:
|
Originally Posted by jojohippo
You have to edit /boot/grub/menu.lst and add 'psmouse.proto=imps' to the line that begins with kernel.
|
As long as the i810 driver isn't working in X, I don't want to use a xorg.conf file, because for me, it works better without that file. But I have an idea how to work out the problem, no xorg.conf file present and the still having the ability to configure the synaptics touchpad. There is a tool called synclient (its in the repos) and with this tool, one can adjust the parameters of the Synaptics without editing the xorg.conf file and without restarting X. My idea is to write a basic script that is called when X starts and this script will set the parameters for the touchpad as I want to have them.
I'll just have to find out, how to tell xorg that a synaptics touchpad is present and not a generic ps2 mouse or something. I haven't look what X detects without the config file... Maybe your hint with the parameter in the menu.lst file is a good starting point...
|

2008-05-24, 04:08 AM CDT
|
|
Registered User
|
|
Join Date: May 2008
Location: United Kingdom
Posts: 64

|
|
|
[quote]Thanks to Bob Kashani, there is solution:
Install package from here, and touchpad will work just peachy.
After weeks of trying to get the touchpad working, you link to the driver solved it. Thank you very much.
Bob
|

2008-07-28, 09:28 PM CDT
|
|
Registered User
|
|
Join Date: May 2007
Posts: 23

|
|
|
How would I go about installing this new driver if I have a previous one already installed? Do I need to disable the old one first? Can I just rpm -e it?
I tried using rpm -ivh synaptics-0.14.6-8.1.fc9.i386.rpm, but its getting conflicts from the 0.14.6-7.fc9.i386 version. I also installed gsynaptics for a gui, which I'm not sure if it needs to be removed as well.
|

2008-07-29, 01:10 AM CDT
|
|
Registered User
|
|
Join Date: Jun 2006
Location: Germany
Age: 21
Posts: 46

|
|
|
Have you tried "rpm -Uvh" ? If this also does not work you could force rpm with the "--force" option
__________________
Late Elation
Fedora 11 on Dell Vostro 1310
Fedora 11 on Desktop
Fedora 10 on eeePC
|

2008-07-29, 05:01 PM CDT
|
|
Registered User
|
|
Join Date: May 2007
Posts: 23

|
|
|
rpm -Uvh did it for me. Thanks!!!
|
| Thread Tools |
Search this Thread |
|
|
|
| Display Modes |
Linear Mode
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
Automatic Translations (Powered by  ):
All times are GMT -7. The time now is 07:07 PM CST.
|
|
 |
 |
 |
 |
|
|