Ways to smooth touchpad/cursor coupling in Ubuntu 18.04, no SynapticsDell Inspiron 7347 - Inactive cursor with my touchpad on UBUNTU 14.04ubuntu 16.04 Elantech TouchpadHow to enable touchpad, without changing touchpad settings in BIOS to basicTecra Z50-C Touchpad: 2 Fingers scroll results in spurious middle click and right clickDisable Tap to Click on Haier Y11bubuntu 16.04 touchpad not workingUbuntu 18 touchpad not working properlyAfter 18.04 install, actions formerly requiring two sequential taps ('double-tap") on a trackpad now require three tapsMake xinput settings permanent after bootReplacement ALPS GlidePoint Trackpad Issue
pipe commands inside find -exec?
CLI: Get information Ubuntu releases
Hackerrank All Women's Codesprint 2019: Name the Product
Determine voltage drop over 10G resistors with cheap multimeter
What is the difference between something being completely legal and being completely decriminalized?
Writing in a Christian voice
Turning a hard to access nut?
If I cast the Enlarge/Reduce spell on an arrow, what weapon could it count as?
How to balance a monster modification (zombie)?
Why are there no stars visible in cislunar space?
Weird lines in Microsoft Word
Have any astronauts/cosmonauts died in space?
Did Nintendo change its mind about 68000 SNES?
Help with identifying unique aircraft over NE Pennsylvania
What are the rules for concealing thieves' tools (or items in general)?
Knife as defense against stray dogs
Do native speakers use "ultima" and "proxima" frequently in spoken English?
How old is Nick Fury?
Hot air balloons as primitive bombers
Why is "la Gestapo" feminine?
What is it called when someone votes for an option that's not their first choice?
How do you justify more code being written by following clean code practices?
Animating wave motion in water
Fair way to split coins
Ways to smooth touchpad/cursor coupling in Ubuntu 18.04, no Synaptics
Dell Inspiron 7347 - Inactive cursor with my touchpad on UBUNTU 14.04ubuntu 16.04 Elantech TouchpadHow to enable touchpad, without changing touchpad settings in BIOS to basicTecra Z50-C Touchpad: 2 Fingers scroll results in spurious middle click and right clickDisable Tap to Click on Haier Y11bubuntu 16.04 touchpad not workingUbuntu 18 touchpad not working properlyAfter 18.04 install, actions formerly requiring two sequential taps ('double-tap") on a trackpad now require three tapsMake xinput settings permanent after bootReplacement ALPS GlidePoint Trackpad Issue
Problem Definition
When using the touchpad, the cursor sometimes jumps around a small amount and often fails to detect touch-click.
Attempted Solutions
Some searching suggested installing the old synaptics stuff, which had a dependency on xserver-xorg-core, which was not installed. Installing the package and all its concommitant dependencies yielded a GUI that not only didn't honor the touchpad, but didn't permit keyboard input. Reinstalled Linux from scratch.
Some History
https://bugs.freedesktop.org/show_bug.cgi?id=104828
It looks like Wayland is now the main vehicle, and some very good work has been done here. One of the commenters expresses concern about CPU usage, a concern I would take issue with given the critical nature of human-mouse pointer coupling (i.e. we're doing this for one process, not 1,000 processes; a little extra CPU for something critical isn't a big deal).
xinput list
xinput list
⎡ Virtual core pointer id=2 [master pointer (3)]
⎜ ↳ Virtual core XTEST pointer id=4 [slave pointer (2)]
⎜ ↳ AlpsPS/2 ALPS DualPoint TouchPad id=13 [slave pointer (2)]
⎜ ↳ AlpsPS/2 ALPS DualPoint Stick id=14 [slave pointer (2)]
⎣ Virtual core keyboard id=3 [master keyboard (2)]
↳ Virtual core XTEST keyboard id=5 [slave keyboard (3)]
↳ Power Button id=6 [slave keyboard (3)]
↳ Video Bus id=7 [slave keyboard (3)]
↳ Video Bus id=8 [slave keyboard (3)]
↳ Power Button id=9 [slave keyboard (3)]
↳ Sleep Button id=10 [slave keyboard (3)]
↳ Dell WMI hotkeys id=11 [slave keyboard (3)]
↳ AT Translated Set 2 keyboard id=12 [slave keyboard (3)]
↳ 40:EF:4C:BE:00:4C id=15 [slave keyboard (3)]
xinput list-props "AlpsPS/2 ALPS DualPoint TouchPad"
xinput list-props "AlpsPS/2 ALPS DualPoint TouchPad"
Device 'AlpsPS/2 ALPS DualPoint TouchPad':
Device Enabled (149): 1
Coordinate Transformation Matrix (151): 1.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 1.000000
libinput Tapping Enabled (284): 1
libinput Tapping Enabled Default (285): 0
libinput Tapping Drag Enabled (286): 0
libinput Tapping Drag Enabled Default (287): 1
libinput Tapping Drag Lock Enabled (288): 0
libinput Tapping Drag Lock Enabled Default (289): 0
libinput Tapping Button Mapping Enabled (290): 1, 0
libinput Tapping Button Mapping Default (291): 1, 0
libinput Natural Scrolling Enabled (292): 0
libinput Natural Scrolling Enabled Default (293): 0
libinput Disable While Typing Enabled (294): 1
libinput Disable While Typing Enabled Default (295): 1
libinput Scroll Methods Available (296): 1, 1, 0
libinput Scroll Method Enabled (297): 1, 0, 0
libinput Scroll Method Enabled Default (298): 1, 0, 0
libinput Middle Emulation Enabled (299): 1
libinput Middle Emulation Enabled Default (300): 1
libinput Accel Speed (301): 0.000000
libinput Accel Speed Default (302): 0.000000
libinput Left Handed Enabled (303): 0
libinput Left Handed Enabled Default (304): 0
libinput Send Events Modes Available (269): 1, 1
libinput Send Events Mode Enabled (270): 0, 0
libinput Send Events Mode Enabled Default (271): 0, 0
Device Node (272): "/dev/input/event6"
Device Product ID (273): 2, 8
libinput Drag Lock Buttons (305): <no items>
libinput Horizontal Scroll Enabled (306): 1
Note there is no "FingerHigh", "FingerLow" or the other usual properties people suggest changing.
Workaround
Notice the matrix in the properties above. The AlpsPS/2 DualPoint Stick also has such a matrix; by setting the x and y values to something really small, I'm able to achieve precise control using the stick, ergo:
Coordinate Transformation Matrix (151): 0.050000, 0.000000, 0.000000, 0.000000, 0.050000, 0.000000, 0.000000, 0.000000, 1.000000
This gives me fine-tuned control for 3D model building and CAD work.
My Question to the Community
If anyone has been successful achieving smoother TouchPad operation with this hardware, I would be most interested to know how. My system is a solid older Dell which otherwise mates up very nicely with Ubuntu 18.04.
Thank you.
18.04 touchpad mouse-pointer alps
add a comment |
Problem Definition
When using the touchpad, the cursor sometimes jumps around a small amount and often fails to detect touch-click.
Attempted Solutions
Some searching suggested installing the old synaptics stuff, which had a dependency on xserver-xorg-core, which was not installed. Installing the package and all its concommitant dependencies yielded a GUI that not only didn't honor the touchpad, but didn't permit keyboard input. Reinstalled Linux from scratch.
Some History
https://bugs.freedesktop.org/show_bug.cgi?id=104828
It looks like Wayland is now the main vehicle, and some very good work has been done here. One of the commenters expresses concern about CPU usage, a concern I would take issue with given the critical nature of human-mouse pointer coupling (i.e. we're doing this for one process, not 1,000 processes; a little extra CPU for something critical isn't a big deal).
xinput list
xinput list
⎡ Virtual core pointer id=2 [master pointer (3)]
⎜ ↳ Virtual core XTEST pointer id=4 [slave pointer (2)]
⎜ ↳ AlpsPS/2 ALPS DualPoint TouchPad id=13 [slave pointer (2)]
⎜ ↳ AlpsPS/2 ALPS DualPoint Stick id=14 [slave pointer (2)]
⎣ Virtual core keyboard id=3 [master keyboard (2)]
↳ Virtual core XTEST keyboard id=5 [slave keyboard (3)]
↳ Power Button id=6 [slave keyboard (3)]
↳ Video Bus id=7 [slave keyboard (3)]
↳ Video Bus id=8 [slave keyboard (3)]
↳ Power Button id=9 [slave keyboard (3)]
↳ Sleep Button id=10 [slave keyboard (3)]
↳ Dell WMI hotkeys id=11 [slave keyboard (3)]
↳ AT Translated Set 2 keyboard id=12 [slave keyboard (3)]
↳ 40:EF:4C:BE:00:4C id=15 [slave keyboard (3)]
xinput list-props "AlpsPS/2 ALPS DualPoint TouchPad"
xinput list-props "AlpsPS/2 ALPS DualPoint TouchPad"
Device 'AlpsPS/2 ALPS DualPoint TouchPad':
Device Enabled (149): 1
Coordinate Transformation Matrix (151): 1.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 1.000000
libinput Tapping Enabled (284): 1
libinput Tapping Enabled Default (285): 0
libinput Tapping Drag Enabled (286): 0
libinput Tapping Drag Enabled Default (287): 1
libinput Tapping Drag Lock Enabled (288): 0
libinput Tapping Drag Lock Enabled Default (289): 0
libinput Tapping Button Mapping Enabled (290): 1, 0
libinput Tapping Button Mapping Default (291): 1, 0
libinput Natural Scrolling Enabled (292): 0
libinput Natural Scrolling Enabled Default (293): 0
libinput Disable While Typing Enabled (294): 1
libinput Disable While Typing Enabled Default (295): 1
libinput Scroll Methods Available (296): 1, 1, 0
libinput Scroll Method Enabled (297): 1, 0, 0
libinput Scroll Method Enabled Default (298): 1, 0, 0
libinput Middle Emulation Enabled (299): 1
libinput Middle Emulation Enabled Default (300): 1
libinput Accel Speed (301): 0.000000
libinput Accel Speed Default (302): 0.000000
libinput Left Handed Enabled (303): 0
libinput Left Handed Enabled Default (304): 0
libinput Send Events Modes Available (269): 1, 1
libinput Send Events Mode Enabled (270): 0, 0
libinput Send Events Mode Enabled Default (271): 0, 0
Device Node (272): "/dev/input/event6"
Device Product ID (273): 2, 8
libinput Drag Lock Buttons (305): <no items>
libinput Horizontal Scroll Enabled (306): 1
Note there is no "FingerHigh", "FingerLow" or the other usual properties people suggest changing.
Workaround
Notice the matrix in the properties above. The AlpsPS/2 DualPoint Stick also has such a matrix; by setting the x and y values to something really small, I'm able to achieve precise control using the stick, ergo:
Coordinate Transformation Matrix (151): 0.050000, 0.000000, 0.000000, 0.000000, 0.050000, 0.000000, 0.000000, 0.000000, 1.000000
This gives me fine-tuned control for 3D model building and CAD work.
My Question to the Community
If anyone has been successful achieving smoother TouchPad operation with this hardware, I would be most interested to know how. My system is a solid older Dell which otherwise mates up very nicely with Ubuntu 18.04.
Thank you.
18.04 touchpad mouse-pointer alps
add a comment |
Problem Definition
When using the touchpad, the cursor sometimes jumps around a small amount and often fails to detect touch-click.
Attempted Solutions
Some searching suggested installing the old synaptics stuff, which had a dependency on xserver-xorg-core, which was not installed. Installing the package and all its concommitant dependencies yielded a GUI that not only didn't honor the touchpad, but didn't permit keyboard input. Reinstalled Linux from scratch.
Some History
https://bugs.freedesktop.org/show_bug.cgi?id=104828
It looks like Wayland is now the main vehicle, and some very good work has been done here. One of the commenters expresses concern about CPU usage, a concern I would take issue with given the critical nature of human-mouse pointer coupling (i.e. we're doing this for one process, not 1,000 processes; a little extra CPU for something critical isn't a big deal).
xinput list
xinput list
⎡ Virtual core pointer id=2 [master pointer (3)]
⎜ ↳ Virtual core XTEST pointer id=4 [slave pointer (2)]
⎜ ↳ AlpsPS/2 ALPS DualPoint TouchPad id=13 [slave pointer (2)]
⎜ ↳ AlpsPS/2 ALPS DualPoint Stick id=14 [slave pointer (2)]
⎣ Virtual core keyboard id=3 [master keyboard (2)]
↳ Virtual core XTEST keyboard id=5 [slave keyboard (3)]
↳ Power Button id=6 [slave keyboard (3)]
↳ Video Bus id=7 [slave keyboard (3)]
↳ Video Bus id=8 [slave keyboard (3)]
↳ Power Button id=9 [slave keyboard (3)]
↳ Sleep Button id=10 [slave keyboard (3)]
↳ Dell WMI hotkeys id=11 [slave keyboard (3)]
↳ AT Translated Set 2 keyboard id=12 [slave keyboard (3)]
↳ 40:EF:4C:BE:00:4C id=15 [slave keyboard (3)]
xinput list-props "AlpsPS/2 ALPS DualPoint TouchPad"
xinput list-props "AlpsPS/2 ALPS DualPoint TouchPad"
Device 'AlpsPS/2 ALPS DualPoint TouchPad':
Device Enabled (149): 1
Coordinate Transformation Matrix (151): 1.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 1.000000
libinput Tapping Enabled (284): 1
libinput Tapping Enabled Default (285): 0
libinput Tapping Drag Enabled (286): 0
libinput Tapping Drag Enabled Default (287): 1
libinput Tapping Drag Lock Enabled (288): 0
libinput Tapping Drag Lock Enabled Default (289): 0
libinput Tapping Button Mapping Enabled (290): 1, 0
libinput Tapping Button Mapping Default (291): 1, 0
libinput Natural Scrolling Enabled (292): 0
libinput Natural Scrolling Enabled Default (293): 0
libinput Disable While Typing Enabled (294): 1
libinput Disable While Typing Enabled Default (295): 1
libinput Scroll Methods Available (296): 1, 1, 0
libinput Scroll Method Enabled (297): 1, 0, 0
libinput Scroll Method Enabled Default (298): 1, 0, 0
libinput Middle Emulation Enabled (299): 1
libinput Middle Emulation Enabled Default (300): 1
libinput Accel Speed (301): 0.000000
libinput Accel Speed Default (302): 0.000000
libinput Left Handed Enabled (303): 0
libinput Left Handed Enabled Default (304): 0
libinput Send Events Modes Available (269): 1, 1
libinput Send Events Mode Enabled (270): 0, 0
libinput Send Events Mode Enabled Default (271): 0, 0
Device Node (272): "/dev/input/event6"
Device Product ID (273): 2, 8
libinput Drag Lock Buttons (305): <no items>
libinput Horizontal Scroll Enabled (306): 1
Note there is no "FingerHigh", "FingerLow" or the other usual properties people suggest changing.
Workaround
Notice the matrix in the properties above. The AlpsPS/2 DualPoint Stick also has such a matrix; by setting the x and y values to something really small, I'm able to achieve precise control using the stick, ergo:
Coordinate Transformation Matrix (151): 0.050000, 0.000000, 0.000000, 0.000000, 0.050000, 0.000000, 0.000000, 0.000000, 1.000000
This gives me fine-tuned control for 3D model building and CAD work.
My Question to the Community
If anyone has been successful achieving smoother TouchPad operation with this hardware, I would be most interested to know how. My system is a solid older Dell which otherwise mates up very nicely with Ubuntu 18.04.
Thank you.
18.04 touchpad mouse-pointer alps
Problem Definition
When using the touchpad, the cursor sometimes jumps around a small amount and often fails to detect touch-click.
Attempted Solutions
Some searching suggested installing the old synaptics stuff, which had a dependency on xserver-xorg-core, which was not installed. Installing the package and all its concommitant dependencies yielded a GUI that not only didn't honor the touchpad, but didn't permit keyboard input. Reinstalled Linux from scratch.
Some History
https://bugs.freedesktop.org/show_bug.cgi?id=104828
It looks like Wayland is now the main vehicle, and some very good work has been done here. One of the commenters expresses concern about CPU usage, a concern I would take issue with given the critical nature of human-mouse pointer coupling (i.e. we're doing this for one process, not 1,000 processes; a little extra CPU for something critical isn't a big deal).
xinput list
xinput list
⎡ Virtual core pointer id=2 [master pointer (3)]
⎜ ↳ Virtual core XTEST pointer id=4 [slave pointer (2)]
⎜ ↳ AlpsPS/2 ALPS DualPoint TouchPad id=13 [slave pointer (2)]
⎜ ↳ AlpsPS/2 ALPS DualPoint Stick id=14 [slave pointer (2)]
⎣ Virtual core keyboard id=3 [master keyboard (2)]
↳ Virtual core XTEST keyboard id=5 [slave keyboard (3)]
↳ Power Button id=6 [slave keyboard (3)]
↳ Video Bus id=7 [slave keyboard (3)]
↳ Video Bus id=8 [slave keyboard (3)]
↳ Power Button id=9 [slave keyboard (3)]
↳ Sleep Button id=10 [slave keyboard (3)]
↳ Dell WMI hotkeys id=11 [slave keyboard (3)]
↳ AT Translated Set 2 keyboard id=12 [slave keyboard (3)]
↳ 40:EF:4C:BE:00:4C id=15 [slave keyboard (3)]
xinput list-props "AlpsPS/2 ALPS DualPoint TouchPad"
xinput list-props "AlpsPS/2 ALPS DualPoint TouchPad"
Device 'AlpsPS/2 ALPS DualPoint TouchPad':
Device Enabled (149): 1
Coordinate Transformation Matrix (151): 1.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 1.000000
libinput Tapping Enabled (284): 1
libinput Tapping Enabled Default (285): 0
libinput Tapping Drag Enabled (286): 0
libinput Tapping Drag Enabled Default (287): 1
libinput Tapping Drag Lock Enabled (288): 0
libinput Tapping Drag Lock Enabled Default (289): 0
libinput Tapping Button Mapping Enabled (290): 1, 0
libinput Tapping Button Mapping Default (291): 1, 0
libinput Natural Scrolling Enabled (292): 0
libinput Natural Scrolling Enabled Default (293): 0
libinput Disable While Typing Enabled (294): 1
libinput Disable While Typing Enabled Default (295): 1
libinput Scroll Methods Available (296): 1, 1, 0
libinput Scroll Method Enabled (297): 1, 0, 0
libinput Scroll Method Enabled Default (298): 1, 0, 0
libinput Middle Emulation Enabled (299): 1
libinput Middle Emulation Enabled Default (300): 1
libinput Accel Speed (301): 0.000000
libinput Accel Speed Default (302): 0.000000
libinput Left Handed Enabled (303): 0
libinput Left Handed Enabled Default (304): 0
libinput Send Events Modes Available (269): 1, 1
libinput Send Events Mode Enabled (270): 0, 0
libinput Send Events Mode Enabled Default (271): 0, 0
Device Node (272): "/dev/input/event6"
Device Product ID (273): 2, 8
libinput Drag Lock Buttons (305): <no items>
libinput Horizontal Scroll Enabled (306): 1
Note there is no "FingerHigh", "FingerLow" or the other usual properties people suggest changing.
Workaround
Notice the matrix in the properties above. The AlpsPS/2 DualPoint Stick also has such a matrix; by setting the x and y values to something really small, I'm able to achieve precise control using the stick, ergo:
Coordinate Transformation Matrix (151): 0.050000, 0.000000, 0.000000, 0.000000, 0.050000, 0.000000, 0.000000, 0.000000, 1.000000
This gives me fine-tuned control for 3D model building and CAD work.
My Question to the Community
If anyone has been successful achieving smoother TouchPad operation with this hardware, I would be most interested to know how. My system is a solid older Dell which otherwise mates up very nicely with Ubuntu 18.04.
Thank you.
18.04 touchpad mouse-pointer alps
18.04 touchpad mouse-pointer alps
edited 2 mins ago
ghedger42
asked 1 hour ago
ghedger42ghedger42
13
13
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "89"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1126794%2fways-to-smooth-touchpad-cursor-coupling-in-ubuntu-18-04-no-synaptics%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1126794%2fways-to-smooth-touchpad-cursor-coupling-in-ubuntu-18-04-no-synaptics%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown