LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
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 07-27-2011, 06:20 PM   #1
Alpo
Member
 
Registered: Jul 2011
Location: US and A.
Distribution: RHEL 6.1 & Ubuntu 10.04
Posts: 50

Rep: Reputation: Disabled
RHEL 6 Configure Synaptics TouchPad


All:

I'm looking to install drivers for my Synaptics touchpad. I have xorg-x11-drv-synaptics-1.2.1-5.el (x86_64) installed, but I don't know how I can get this little guy to work. Thanks!
 
Old 07-27-2011, 08:52 PM   #2
rkski
Member
 
Registered: Jan 2009
Location: Canada
Distribution: CentOS 6.3, Fedora 17
Posts: 247

Rep: Reputation: 51
I found this link useful myself:

https://wiki.archlinux.org/index.php...cs#Xorg_method
 
1 members found this post helpful.
Old 07-27-2011, 09:54 PM   #3
Alpo
Member
 
Registered: Jul 2011
Location: US and A.
Distribution: RHEL 6.1 & Ubuntu 10.04
Posts: 50

Original Poster
Rep: Reputation: Disabled
rkski -

Thanks. I've read through that a few times, to no avail...

Code:
$ synclient -m 100
Can't access shared memory area. SHMConfig disabled?
Couldn't find synaptics properties. No synaptics driver loaded?
I don't have an xorg.conf file in my /etc/X11/ directory. Should I create one? I'm very unfamiliar with this system. Any help would be greatly appreciated.
 
Old 07-27-2011, 10:14 PM   #4
Alpo
Member
 
Registered: Jul 2011
Location: US and A.
Distribution: RHEL 6.1 & Ubuntu 10.04
Posts: 50

Original Poster
Rep: Reputation: Disabled
As for a more specific question, that tutorial states, "After installation of xf86-input-synaptics, a default configuration file is located at /etc/X11/xorg.conf.d/10-synaptics.conf."

Since I'm actually installing xorg-x11-drv-synaptics-1.2.1.el6 (x86_64), would the location of that file be different?
 
Old 07-27-2011, 10:21 PM   #5
TobiSGD
Moderator
 
Registered: Dec 2009
Location: Germany
Distribution: Whatever fits the task best
Posts: 17,148
Blog Entries: 2

Rep: Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886
Just create that file if it is not there. Maybe this post will help you.
 
Old 07-27-2011, 10:27 PM   #6
Alpo
Member
 
Registered: Jul 2011
Location: US and A.
Distribution: RHEL 6.1 & Ubuntu 10.04
Posts: 50

Original Poster
Rep: Reputation: Disabled
Haha. I guess avoiding GUIs all together would solve the problem.

Where can I go to get good documentation on how the X-windows system works (i.e. How on earth can I just create that file/directory and know that X-windows will execute that code?). I checked out www.x.org, but there's so much info, it's difficult for a newbie to keep it straight. Where should I start?
 
Old 07-28-2011, 05:19 AM   #7
rkski
Member
 
Registered: Jan 2009
Location: Canada
Distribution: CentOS 6.3, Fedora 17
Posts: 247

Rep: Reputation: 51
Quote:
As for a more specific question, that tutorial states, "After installation of xf86-input-synaptics, a default configuration file is located at /etc/X11/xorg.conf.d/10-synaptics.conf."

Since I'm actually installing xorg-x11-drv-synaptics-1.2.1.el6 (x86_64), would the location of that file be different?
The location will be the same, just create that file and look at TobiSGD's example in the link he gave for what to put in it, then restart X.

For documentation on X look at www.tldp.org for a start.
 
1 members found this post helpful.
Old 07-28-2011, 04:39 PM   #8
Alpo
Member
 
Registered: Jul 2011
Location: US and A.
Distribution: RHEL 6.1 & Ubuntu 10.04
Posts: 50

Original Poster
Rep: Reputation: Disabled
rkski

Thanks for all the info. I'll give that solution a shot tonight and let you know.
 
Old 07-28-2011, 05:12 PM   #9
Alpo
Member
 
Registered: Jul 2011
Location: US and A.
Distribution: RHEL 6.1 & Ubuntu 10.04
Posts: 50

Original Poster
Rep: Reputation: Disabled
OK. So, I created and edited /etc/X11/xorg.conf.d/10-synaptics, and it now reads...

Code:
Section "InputClass"
        Identifier "touchpad"
        Driver "synaptics"
        MatchDevicePath "/dev/input/event*"
        MatchIsTouchpad "on"
        Option "TapButton1" "1"
        Option "TapButton2" "0"
        Option "TapButton3" "0"
        Option "VertEdgeScroll" "1"
        Option "HorizEdgeScroll" "1"
        Option "MinSpeed" "1.1"
        Option "MaxSpeed" "1.9"
EndSection
However, I'm still not getting any scrolling, so it seems the driver may not have loaded. How can I check?
 
Old 07-28-2011, 05:18 PM   #10
Alpo
Member
 
Registered: Jul 2011
Location: US and A.
Distribution: RHEL 6.1 & Ubuntu 10.04
Posts: 50

Original Poster
Rep: Reputation: Disabled
Here's another problem:

Code:
[Alpo@alpo-computer ~]$ synclient -l
Couldn't find synaptics properties. No synaptics driver loaded?
 
Old 07-28-2011, 05:18 PM   #11
TobiSGD
Moderator
 
Registered: Dec 2009
Location: Germany
Distribution: Whatever fits the task best
Posts: 17,148
Blog Entries: 2

Rep: Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886
Did you restart the Xserver, so that it actually reads that file?

To check if it reads the file and loads the driver do
Code:
grep -i synaptics /var/log/Xorg.0.log
 
Old 07-28-2011, 07:52 PM   #12
Alpo
Member
 
Registered: Jul 2011
Location: US and A.
Distribution: RHEL 6.1 & Ubuntu 10.04
Posts: 50

Original Poster
Rep: Reputation: Disabled
Code:
$ grep -i synaptics /var/log/Xorg.0.log
(II) config/hal: Adding input device PS/2 Synaptics TouchPad
(**) PS/2 Synaptics TouchPad: always reports core events
(**) PS/2 Synaptics TouchPad: Device: "/dev/input/event7"
(II) PS/2 Synaptics TouchPad: Found 3 mouse buttons
(II) PS/2 Synaptics TouchPad: Found relative axes
(II) PS/2 Synaptics TouchPad: Found x and y relative axes
(II) PS/2 Synaptics TouchPad: Configuring as mouse
(**) PS/2 Synaptics TouchPad: YAxisMapping: buttons 4 and 5
(**) PS/2 Synaptics TouchPad: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
(II) XINPUT: Adding extended input device "PS/2 Synaptics TouchPad" (type: MOUSE)
(**) PS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
(**) PS/2 Synaptics TouchPad: (accel) acceleration profile 0
(II) PS/2 Synaptics TouchPad: initialized for relative axes.
(II) config/hal: removing device PS/2 Synaptics TouchPad
(II) PS/2 Synaptics TouchPad: Close
(II) config/hal: Adding input device PS/2 Synaptics TouchPad
(**) PS/2 Synaptics TouchPad: always reports core events
(**) PS/2 Synaptics TouchPad: Device: "/dev/input/event7"
(II) PS/2 Synaptics TouchPad: Found 3 mouse buttons
(II) PS/2 Synaptics TouchPad: Found relative axes
(II) PS/2 Synaptics TouchPad: Found x and y relative axes
(II) PS/2 Synaptics TouchPad: Configuring as mouse
(**) PS/2 Synaptics TouchPad: YAxisMapping: buttons 4 and 5
(**) PS/2 Synaptics TouchPad: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
(II) XINPUT: Adding extended input device "PS/2 Synaptics TouchPad" (type: MOUSE)
(**) PS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
(**) PS/2 Synaptics TouchPad: (accel) acceleration profile 0
(II) PS/2 Synaptics TouchPad: initialized for relative axes.
Your thoughts?
 
Old 07-28-2011, 08:09 PM   #13
TobiSGD
Moderator
 
Registered: Dec 2009
Location: Germany
Distribution: Whatever fits the task best
Posts: 17,148
Blog Entries: 2

Rep: Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886
Is that after a restart? Looks very different from what I get and I can't see any mentioning of the options set in that file.

Here is how mine looks:
Code:
root@dragon ~ :( # grep -i synaptics /var/log/Xorg.0.log
[    16.726] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event9)
[    16.727] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "evdev touchpad catchall"
[    16.727] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad"
[    16.727] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad"
[    16.727] (II) LoadModule: "synaptics"
[    16.728] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
[    16.729] (II) Module synaptics: vendor="X.Org Foundation"
[    16.769] (--) SynPS/2 Synaptics TouchPad: x-axis range 1472 - 5692
[    16.769] (--) SynPS/2 Synaptics TouchPad: y-axis range 1408 - 4680
[    16.769] (--) SynPS/2 Synaptics TouchPad: pressure range 0 - 255
[    16.769] (--) SynPS/2 Synaptics TouchPad: finger width range 0 - 15
[    16.769] (--) SynPS/2 Synaptics TouchPad: buttons: left right
[    16.801] (--) SynPS/2 Synaptics TouchPad: touchpad found
[    16.801] (**) SynPS/2 Synaptics TouchPad: always reports core events
[    16.817] (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD)
[    16.817] (**) SynPS/2 Synaptics TouchPad: (accel) MinSpeed is now constant deceleration 0.9
[    16.817] (**) SynPS/2 Synaptics TouchPad: MaxSpeed is now 1.73
[    16.817] (**) SynPS/2 Synaptics TouchPad: AccelFactor is now 0.037
[    16.817] (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
[    16.817] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration profile 1
[    16.817] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
[    16.817] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
[    16.841] (--) SynPS/2 Synaptics TouchPad: touchpad found
[    16.841] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse0)
 
Old 07-28-2011, 08:11 PM   #14
Alpo
Member
 
Registered: Jul 2011
Location: US and A.
Distribution: RHEL 6.1 & Ubuntu 10.04
Posts: 50

Original Poster
Rep: Reputation: Disabled
Yup, definitely after a restart.

Also, on startup and shutdown there's a small message in the top left of the screen that says "Unable to query Synaptics hardware." What does that mean exactly and how does it fit into the big picture?
 
Old 07-28-2011, 08:22 PM   #15
TobiSGD
Moderator
 
Registered: Dec 2009
Location: Germany
Distribution: Whatever fits the task best
Posts: 17,148
Blog Entries: 2

Rep: Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886
Sorry, but I don't know any further. May be now is the time to contact the Red Hat-support.
 
  


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
Synaptics touchpad not recognised by synaptics driver (12.1) bogzab Slackware 13 03-22-2009 09:23 PM
How do I configure the 2.6.21.5 kernel for a synaptics touchpad? glass931 Linux - Kernel 4 09-19-2007 03:17 PM
Can't configure Synaptics Touchpad on Compaq NC4000 Malcyman Linux - Laptop and Netbook 2 06-14-2007 04:40 AM
Need to kill touchpad click. (Synaptics Touchpad / FC4) sarysa Linux - Laptop and Netbook 4 02-19-2007 03:15 PM
synaptics touchpad with 2.6.14 dracolich Linux - General 10 11-11-2005 01:46 PM

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

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