Slackware This Forum is for the discussion of Slackware Linux.
|
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
|
07-16-2009, 03:02 PM
|
#1
|
Senior Member
Registered: Dec 2005
Location: United Kingdom
Distribution: Fedora , Ubuntu, Slackware-Current
Posts: 1,526
Rep:
|
[SOLVED] Slackpkg kernel upgrade has borked Tap-to-Click on Touchpad [SOLVED]
Hello Everyone,
Had a kernel upgrade to 2.6.29.6 today and after restarting I no longer have tap-to-click on my laptop touchpad. I know this is the Synaptics driver and it has always worked right away with every version of Slack I have used. I understand that xorg.conf is no longer being read by the system (unless I am mistaken), so I am not sure how to restore this.
Can anyone help?
Thanks in advance,
Bob
Last edited by BobNutfield; 07-19-2009 at 01:54 PM.
|
|
|
07-16-2009, 03:56 PM
|
#2
|
Senior Member
Registered: Dec 2005
Location: United Kingdom
Distribution: Fedora , Ubuntu, Slackware-Current
Posts: 1,526
Original Poster
Rep:
|
SOLVED
I guess I was incorrect. Editing the xorg.conf does still work for this kind of problem and I was able to solve the problem. Sorry for posting so quick...
But I am curious, does synclient get all of its parameters from xorg, or is it possible to edit these parameters outside of xorg? I saw the problem right away from synclient -l, but couldn't edit it.
Thanks
Bob
|
|
|
07-16-2009, 09:16 PM
|
#3
|
LQ Newbie
Registered: Nov 2008
Location: France
Distribution: 0Linux, Slackware
Posts: 13
Rep:
|
Have a look at the /usr/share/hal/fdi/policy/10osvendor/11-x11-synaptics.fdi file
What I added (then rebooted to make sure it is taken into account):
Code:
<merge key="input.x11_options.TapButton1" type="string">1</merge>
<merge key="input.x11_options.TapButton2" type="string">2</merge>
<merge key="input.x11_options.TapButton3" type="string">3</merge>
<!--Enable vertical scrolling when dragging with two fingers anywhere on the touchpad-->
<merge key="input.x11_options.VertTwoFingerScroll" type="string">false</merge>
|
|
|
07-16-2009, 09:38 PM
|
#4
|
HCL Maintainer
Registered: Jun 2003
Location: McCalla, AL, USA
Distribution: Arch, Gentoo
Posts: 6,941
Rep:
|
Bob,
Mark [SOLVED] on the OP.
|
|
|
07-17-2009, 08:56 AM
|
#5
|
Senior Member
Registered: Sep 2008
Distribution: Slackware
Posts: 1,041
Rep:
|
Quote:
Originally Posted by appzer0
Have a look at the /usr/share/hal/fdi/policy/10osvendor/11-x11-synaptics.fdi file
What I added (then rebooted to make sure it is taken into account):
Code:
<merge key="input.x11_options.TapButton1" type="string">1</merge>
<merge key="input.x11_options.TapButton2" type="string">2</merge>
<merge key="input.x11_options.TapButton3" type="string">3</merge>
<!--Enable vertical scrolling when dragging with two fingers anywhere on the touchpad-->
<merge key="input.x11_options.VertTwoFingerScroll" type="string">false</merge>
|
You shouldn't edit the fdi files in /usr/share directly. It's preferable to copy them to /etc first and then edit those files.
That way you will have a backup of the original, in case anything goes wrong.
|
|
|
07-17-2009, 03:41 PM
|
#6
|
Member
Registered: Jul 2005
Distribution: Slackware64-current
Posts: 587
|
I got this also i don't know how it happend but after the upgrade i had the file /etc/modprobe.d/psmouse~.conf that had the "options psmouse proto=imps" line uncommented.
So i needed to remove that file.
|
|
|
07-17-2009, 06:29 PM
|
#7
|
HCL Maintainer
Registered: Jun 2003
Location: McCalla, AL, USA
Distribution: Arch, Gentoo
Posts: 6,941
Rep:
|
Quote:
Originally Posted by Nille_kungen
I got this also i don't know how it happend but after the upgrade i had the file /etc/modprobe.d/psmouse~.conf that had the "options psmouse proto=imps" line uncommented.
So i needed to remove that file.
|
If you're going to run -current, you're obligated to read the ChangeLog.txt:
Code:
mingdao@paul:~$ less /backup2/ftp/pub/Linux/Slackware/slackware-current/ChangeLog.txt
+--------------------------+
Wed Jul 15 20:51:29 CDT 2009
<snip>
a/udev-141-i486-3.txz: Rebuilt. Added aic94xx to /etc/modprobe.d/blacklist.
Change config files in /etc/modprobe.d/ to use a .conf suffix in preparation
for newer versions of module-init-tools.
Let the psmouse module load with the default kernel configuration, rather
than forcing proto=imps. If this causes problems with your KVM, uncomment
the line in /etc/modprobe.d/psmouse.
So now you know you should have commented that line, rather than removing the
entire file. What are you going to do when module-init-tools is updated?
|
|
|
07-17-2009, 09:24 PM
|
#8
|
Member
Registered: Jul 2005
Distribution: Slackware64-current
Posts: 587
|
I did read the ChangeLog.txt and thats not the same thing as i described.
I had the /etc/modprobe.d/psmouse.conf thats correct but there was also an /etc/modprobe.d/psmouse~.conf that shouldn't be there that had the line uncommented.
The /etc/modprobe.d/psmouse.conf in current has "options psmouse proto=imps" commented out so there shouldn't be any need to comment out that line.
So i posted that i got an rubbish file when i updated current last time and someone else might have the same problem.
|
|
|
07-17-2009, 11:40 PM
|
#9
|
HCL Maintainer
Registered: Jun 2003
Location: McCalla, AL, USA
Distribution: Arch, Gentoo
Posts: 6,941
Rep:
|
You might have a "rubbish file" because you did something incorrectly in the upgrade.
Here are three boxen with the latest Slackware64 -current and Slackware -current
updates that you describe. None has a /etc/modprobe.d/psmouse~.conf file.
Code:
mahui@china:~$ ls -l /etc/modprobe.d/
total 20
-rw-r--r-- 1 root root 6251 2009-07-15 10:38 blacklist.conf
-rw-r--r-- 1 root root 443 2009-04-21 07:01 isapnp.conf
lrwxrwxrwx 1 root root 16 2009-07-10 21:37 modprobe.conf -> ../modprobe.conf
-rw-r--r-- 1 root root 265 2009-07-15 11:54 psmouse.conf
-rw-r--r-- 1 root root 244 2008-12-01 10:00 usb-controller.conf
mahui@china:~$ cat /etc/modprobe.d/psmouse.conf
# PS/2 mouse support:
# The default options when the psmouse module can cause problems with KVM
# switches. If you experience this, you may want to uncomment the line
# below to use a more basic mouse protocol with the psmouse module:
#options psmouse proto=imps
mahui@china:~$
Code:
mingdao@silas64:~$ ls -l /etc/modprobe.d/
total 24
-rw-r--r-- 1 root root 6251 2009-07-15 10:38 blacklist.conf
-rw-r--r-- 1 root root 443 2009-04-21 07:01 isapnp.conf
lrwxrwxrwx 1 root root 16 2009-06-26 01:59 modprobe.conf -> ../modprobe.conf
-rw-r--r-- 1 root root 265 2009-07-15 11:54 psmouse.conf
-rw-r--r-- 1 root root 64 2009-06-26 19:40 sound.conf
-rw-r--r-- 1 root root 244 2008-12-01 10:00 usb-controller.conf
mingdao@silas64:~$ cat /etc/modprobe.d/psmouse.conf
# PS/2 mouse support:
# The default options when the psmouse module can cause problems with KVM
# switches. If you experience this, you may want to uncomment the line
# below to use a more basic mouse protocol with the psmouse module:
#options psmouse proto=imps
mingdao@silas64:~$
Code:
mingdao@jeremiah:~$ ls -l /etc/modprobe.d/
total 32
-rw-r--r-- 1 root root 6250 2009-07-17 10:40 blacklist.conf
-rw-r--r-- 1 root root 6267 2009-07-17 10:32 blacklist.conf~
-rw-r--r-- 1 root root 39 2009-07-17 12:15 bluetooth.conf
-rw-r--r-- 1 root root 443 2009-04-21 07:01 isapnp.conf
lrwxrwxrwx 1 root root 16 2009-07-14 00:19 modprobe.conf -> ../modprobe.conf
-rw-r--r-- 1 root root 265 2009-07-15 11:54 psmouse.conf
-rw-r--r-- 1 root root 244 2008-12-01 10:00 usb-controller.conf
mingdao@jeremiah:~$ cat /etc/modprobe.d/psmouse.conf
# PS/2 mouse support:
# The default options when the psmouse module can cause problems with KVM
# switches. If you experience this, you may want to uncomment the line
# below to use a more basic mouse protocol with the psmouse module:
#options psmouse proto=imps
mingdao@jeremiah:~$
|
|
|
07-18-2009, 08:46 AM
|
#10
|
Member
Registered: Jul 2005
Distribution: Slackware64-current
Posts: 587
|
My box didn't have that "rubbish file" before i ran 'slackpkg update gpg' 'slackpkg update' and 'slackpkg upgrade-all'.
And this box isn't upgraded from 12.2 it's an relative fresh install of current.(2009-06-24)
|
|
|
All times are GMT -5. The time now is 06:20 AM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|