LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Desktop
User Name
Password
Linux - Desktop This forum is for the discussion of all Linux Software used in a desktop context.

Notices


Reply
  Search this Thread
Old 05-01-2020, 08:57 PM   #1
berndbausch
LQ Addict
 
Registered: Nov 2013
Location: Tokyo
Distribution: Mostly Ubuntu and Centos
Posts: 6,316

Rep: Reputation: 2002Reputation: 2002Reputation: 2002Reputation: 2002Reputation: 2002Reputation: 2002Reputation: 2002Reputation: 2002Reputation: 2002Reputation: 2002Reputation: 2002
How to disable trackpoint?


I have an ancient Dell Latitude E5500 laptop on which I installed the latest and greatest Debian Buster with KDE. Unfortunately, 80% of the time the mouse pointer automatically moves across the screen, either to the lower left or upper right corner. This is a hardware problem: It occurred when Windows was still installed.

The laptop has both a touchpad and a trackpoint. KDE settings allow me to disable the touchpad when a mouse is plugged in. Indeed, a notification to this effect popped up on the screen, and touching the touchpad has no effect.

However, the pointer keeps on moving, which confirms IMO that the trackpoint is at fault.

How can I disable or perhaps even repair the trackpoint?
 
Old 05-01-2020, 09:33 PM   #2
ferrari
LQ Guru
 
Registered: Sep 2003
Location: Auckland, NZ
Distribution: openSUSE Leap
Posts: 5,813

Rep: Reputation: 1143Reputation: 1143Reputation: 1143Reputation: 1143Reputation: 1143Reputation: 1143Reputation: 1143Reputation: 1143Reputation: 1143
There's a couple of ways to go about this. One is a system-wide approach using a custom Xorg config file, the other is a user-specific approach, using and xinput to disable the device upon login to the user's desktop environment. Most DE's allow for an autostart script (or command) to be run for example. For a single user system, wither way is probably ok.

To begin with get the Xorg input device list using
Code:
xinput list
and report back.

The Xorg approach will require a custom config file eg /etc/X11/xorg.conf.d/80-trackpoint.conf which uses the 'MatchProduct' identifier to match the device (as reported via xinput) and disable the device. So something like this...
Code:
Section "InputClass"
   Identifier     "Disable trackpoint"
   MatchProduct   "<trackpoint device>"
   Option         "Ignore" "on"
EndSection
with the appropriate matching hardware string substituted for '<trackpoint device>'.

Last edited by ferrari; 05-01-2020 at 09:40 PM.
 
1 members found this post helpful.
Old 05-01-2020, 10:25 PM   #3
berndbausch
LQ Addict
 
Registered: Nov 2013
Location: Tokyo
Distribution: Mostly Ubuntu and Centos
Posts: 6,316

Original Poster
Rep: Reputation: 2002Reputation: 2002Reputation: 2002Reputation: 2002Reputation: 2002Reputation: 2002Reputation: 2002Reputation: 2002Reputation: 2002Reputation: 2002Reputation: 2002
That was quick.

xinput revealed that I have an "AlpsPS/2 ALPS DualPoint Stick". After adding this to xorg.conf:
Code:
Section "InputClass"
   Identifier "Disable trackpoint"
   MatchProduct "AlpsPS/2 ALPS DualPoint Stick"
   Option "Ignore" "on"
EndSection
I am now trackpoint-free. Thanks!
 
Old 05-01-2020, 10:55 PM   #4
ferrari
LQ Guru
 
Registered: Sep 2003
Location: Auckland, NZ
Distribution: openSUSE Leap
Posts: 5,813

Rep: Reputation: 1143Reputation: 1143Reputation: 1143Reputation: 1143Reputation: 1143Reputation: 1143Reputation: 1143Reputation: 1143Reputation: 1143
Fantabulous!!!
 
Old 05-06-2020, 01:43 AM   #5
Elie99374
Member
 
Registered: May 2020
Location: Jerusalem Israel
Posts: 63

Rep: Reputation: Disabled
Quote:
Originally Posted by ferrari View Post
There's a couple of ways to go about this. One is a system-wide approach using a custom Xorg config file, the other is a user-specific approach, using and xinput to disable the device upon login to the user's desktop environment. Most DE's allow for an autostart script (or command) to be run for example. For a single user system, wither way is probably ok.

To begin with get the Xorg input device list using
Code:
xinput list
and report back.

The Xorg approach will require a custom config file eg /etc/X11/xorg.conf.d/80-trackpoint.conf which uses the 'MatchProduct' identifier to match the device (as reported via xinput) and disable the device. So something like this...
Code:
Section "InputClass"
   Identifier     "Disable trackpoint"
   MatchProduct   "<trackpoint device>"
   Option         "Ignore" "on"
EndSection
with the appropriate matching hardware string substituted for '<trackpoint device>'.
i think i have the exact same probem,

i wanted to check this option but i'm such a novice i don't know how to do it,
i "nano"ed tihs file name and pasted the text with my input device name (which happends to be the same as the one in you'r text) it didn't stop the touchstick
can someone please explain it to as simply as possible?
sorry for being so stupid
 
Old 05-06-2020, 02:19 AM   #6
ferrari
LQ Guru
 
Registered: Sep 2003
Location: Auckland, NZ
Distribution: openSUSE Leap
Posts: 5,813

Rep: Reputation: 1143Reputation: 1143Reputation: 1143Reputation: 1143Reputation: 1143Reputation: 1143Reputation: 1143Reputation: 1143Reputation: 1143
Hi Elie99374. In general, you're best advised to start your own thread to catch the attention that you require....especially as this is already marked as solved. I assume you did
Code:
xinput list
to get the relevant device first. Note that if you do create/edit such a Xorg config file, it will only rake effect the next time the X-server is started. (Obviously not applicable if using Wayland either.)
 
1 members found this post helpful.
  


Reply

Tags
kde, mouse, trackpoint



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
[SOLVED] Trackpoint/Trackpoint center button scrolling doesn't work on an X230 nekoseam Slackware 15 04-07-2018 05:58 PM
Thinkpad R31 Keyboard and trackpoint ricesteam Linux - Laptop and Netbook 0 01-24-2004 12:30 AM
IBM Trackpoint/Mousepoint Samus_Aran Linux - Laptop and Netbook 2 01-18-2004 11:53 AM
trackpoint mouse freezes linux on compaq armada 3500 robert_G Linux - Hardware 1 10-20-2003 03:30 PM
Erratic IBM Trackpoint problem cesium Linux - Software 1 06-07-2002 04:05 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Desktop

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