Thinkpad trackpoint and trackpoint keys disabled after suspendHow to use trackpoint but keep touchpad disabled on Lenovo ThinkPad e531How to set trackpoint speed for Thinkpad?Trackpoint and touchpad Lenovo L460 Thinkpad (15.10)ThinkPad Backlit Keyboard and TrackPoint Not Working After 17.04 Updateerratic behaviour of trackpoint on thinkpad t420s [UBUNTU 18.04]Thinkpad trackpoint scrolling speedUbntu 18.04 trackpoint feels weird and squishy
What happened to Sophie in her last encounter with Arthur?
Physical interpretation of complex numbers
A variation on Caesar
Making Sandwiches
On a naked chicken (no coating,batter) is there any benefit of double frying?
Do airplanes need brakes in the air?
Need Good OOP Design For World and Countries Problem
An historical mystery : Poincaré’s silence on Lebesgue integral and measure theory?
Can we rotate symbols in LaTeX? How should we make this diagram?
Canonical reference for Chern characteristic classes
Does SQL Server Only Perform Calculations In A SELECT List Once?
How do I find the unknown program enabled during Start-Up?
Is it possible to keep cat litter on balcony during winter (down to -10°C)
How to use FDE without needing to share the encryption password
Completing the square to solve limit problems
How to interpret Residuals vs. Fitted Plot
Should a middle class person emulate a very wealthy investor for % of cash hold?
Polling on Impeachment
Spacing between ArcMap class name and description in the legend
Hole in PCB due to corrosive reaction?
How to calculate the size of ground plane we need to use in PCB(Printed circuit board) designing?
Is there any point in having more than 6 months' runway in savings?
What would make the internet go away?
Rashi's explanation of why we are told that Avram was 86 at the birth of Yishma'el
Thinkpad trackpoint and trackpoint keys disabled after suspend
How to use trackpoint but keep touchpad disabled on Lenovo ThinkPad e531How to set trackpoint speed for Thinkpad?Trackpoint and touchpad Lenovo L460 Thinkpad (15.10)ThinkPad Backlit Keyboard and TrackPoint Not Working After 17.04 Updateerratic behaviour of trackpoint on thinkpad t420s [UBUNTU 18.04]Thinkpad trackpoint scrolling speedUbntu 18.04 trackpoint feels weird and squishy
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty
margin-bottom:0;
Thinkpad laptop W520 series with kernel: 4.15.0-51-generic x86_64 bits: 64
Following the latest dist-update the trackpoint and it's related keys don't work after return from suspend mode. Unloading and (re-)loading of psmouse fixes the issue but is only a workaround and somewhat annoying.
TLP is installed.
Any help highly appreciated. mgw
18.04 thinkpad trackpoint
add a comment
|
Thinkpad laptop W520 series with kernel: 4.15.0-51-generic x86_64 bits: 64
Following the latest dist-update the trackpoint and it's related keys don't work after return from suspend mode. Unloading and (re-)loading of psmouse fixes the issue but is only a workaround and somewhat annoying.
TLP is installed.
Any help highly appreciated. mgw
18.04 thinkpad trackpoint
add a comment
|
Thinkpad laptop W520 series with kernel: 4.15.0-51-generic x86_64 bits: 64
Following the latest dist-update the trackpoint and it's related keys don't work after return from suspend mode. Unloading and (re-)loading of psmouse fixes the issue but is only a workaround and somewhat annoying.
TLP is installed.
Any help highly appreciated. mgw
18.04 thinkpad trackpoint
Thinkpad laptop W520 series with kernel: 4.15.0-51-generic x86_64 bits: 64
Following the latest dist-update the trackpoint and it's related keys don't work after return from suspend mode. Unloading and (re-)loading of psmouse fixes the issue but is only a workaround and somewhat annoying.
TLP is installed.
Any help highly appreciated. mgw
18.04 thinkpad trackpoint
18.04 thinkpad trackpoint
asked Jul 21 at 17:13
mgwmgw
266 bronze badges
266 bronze badges
add a comment
|
add a comment
|
1 Answer
1
active
oldest
votes
Having to unload and reload the psmouse driver when resuming from suspend is a common problem. You can automate the process with a script though:
Create a new file in the /lib/systemd/system-sleep/ directory containing:
#!/bin/bash
case $1/$2 in
pre/*)
echo "Going to $2..."
# Place your pre suspend commands here, or `exit 0` if no pre suspend action required
modprobe -r psmouse
;;
post/*)
echo "Waking up from $2..."
# Place your post suspend (resume) commands here, or `exit 0` if no post suspend action required
sleep 2
modprobe psmouse
;;
esac
Make it executable:
sudo chmod a+x /lib/systemd/system-sleep/script-name
After the next reboot, the script will be active.
A script like this has worked for many people over the years. Of course your other option would be trying the previous kernel version and if it works sticking with it.
Txs. Another funny thing is thatconfigure-trackpointtells me it doesn't detect anything even though the device is working after reloading of module.
– mgw
Jul 22 at 10:15
@mgw I've never usedconfigure-trackpoint. You would be best served posting a new question about that problem. In the meantime click the grey check mark next to the answer if it solves the current question. Thanks.
– WinEunuuchs2Unix
Jul 22 at 15:39
It's "only" a workaround. Let's wait for the next kernel update. Txs for the script @WinEunuuchs2Unix
– mgw
Jul 23 at 15:57
add a comment
|
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/4.0/"u003ecc by-sa 4.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%2f1159957%2fthinkpad-trackpoint-and-trackpoint-keys-disabled-after-suspend%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Having to unload and reload the psmouse driver when resuming from suspend is a common problem. You can automate the process with a script though:
Create a new file in the /lib/systemd/system-sleep/ directory containing:
#!/bin/bash
case $1/$2 in
pre/*)
echo "Going to $2..."
# Place your pre suspend commands here, or `exit 0` if no pre suspend action required
modprobe -r psmouse
;;
post/*)
echo "Waking up from $2..."
# Place your post suspend (resume) commands here, or `exit 0` if no post suspend action required
sleep 2
modprobe psmouse
;;
esac
Make it executable:
sudo chmod a+x /lib/systemd/system-sleep/script-name
After the next reboot, the script will be active.
A script like this has worked for many people over the years. Of course your other option would be trying the previous kernel version and if it works sticking with it.
Txs. Another funny thing is thatconfigure-trackpointtells me it doesn't detect anything even though the device is working after reloading of module.
– mgw
Jul 22 at 10:15
@mgw I've never usedconfigure-trackpoint. You would be best served posting a new question about that problem. In the meantime click the grey check mark next to the answer if it solves the current question. Thanks.
– WinEunuuchs2Unix
Jul 22 at 15:39
It's "only" a workaround. Let's wait for the next kernel update. Txs for the script @WinEunuuchs2Unix
– mgw
Jul 23 at 15:57
add a comment
|
Having to unload and reload the psmouse driver when resuming from suspend is a common problem. You can automate the process with a script though:
Create a new file in the /lib/systemd/system-sleep/ directory containing:
#!/bin/bash
case $1/$2 in
pre/*)
echo "Going to $2..."
# Place your pre suspend commands here, or `exit 0` if no pre suspend action required
modprobe -r psmouse
;;
post/*)
echo "Waking up from $2..."
# Place your post suspend (resume) commands here, or `exit 0` if no post suspend action required
sleep 2
modprobe psmouse
;;
esac
Make it executable:
sudo chmod a+x /lib/systemd/system-sleep/script-name
After the next reboot, the script will be active.
A script like this has worked for many people over the years. Of course your other option would be trying the previous kernel version and if it works sticking with it.
Txs. Another funny thing is thatconfigure-trackpointtells me it doesn't detect anything even though the device is working after reloading of module.
– mgw
Jul 22 at 10:15
@mgw I've never usedconfigure-trackpoint. You would be best served posting a new question about that problem. In the meantime click the grey check mark next to the answer if it solves the current question. Thanks.
– WinEunuuchs2Unix
Jul 22 at 15:39
It's "only" a workaround. Let's wait for the next kernel update. Txs for the script @WinEunuuchs2Unix
– mgw
Jul 23 at 15:57
add a comment
|
Having to unload and reload the psmouse driver when resuming from suspend is a common problem. You can automate the process with a script though:
Create a new file in the /lib/systemd/system-sleep/ directory containing:
#!/bin/bash
case $1/$2 in
pre/*)
echo "Going to $2..."
# Place your pre suspend commands here, or `exit 0` if no pre suspend action required
modprobe -r psmouse
;;
post/*)
echo "Waking up from $2..."
# Place your post suspend (resume) commands here, or `exit 0` if no post suspend action required
sleep 2
modprobe psmouse
;;
esac
Make it executable:
sudo chmod a+x /lib/systemd/system-sleep/script-name
After the next reboot, the script will be active.
A script like this has worked for many people over the years. Of course your other option would be trying the previous kernel version and if it works sticking with it.
Having to unload and reload the psmouse driver when resuming from suspend is a common problem. You can automate the process with a script though:
Create a new file in the /lib/systemd/system-sleep/ directory containing:
#!/bin/bash
case $1/$2 in
pre/*)
echo "Going to $2..."
# Place your pre suspend commands here, or `exit 0` if no pre suspend action required
modprobe -r psmouse
;;
post/*)
echo "Waking up from $2..."
# Place your post suspend (resume) commands here, or `exit 0` if no post suspend action required
sleep 2
modprobe psmouse
;;
esac
Make it executable:
sudo chmod a+x /lib/systemd/system-sleep/script-name
After the next reboot, the script will be active.
A script like this has worked for many people over the years. Of course your other option would be trying the previous kernel version and if it works sticking with it.
edited Jul 22 at 15:37
answered Jul 21 at 17:25
WinEunuuchs2UnixWinEunuuchs2Unix
60.6k18 gold badges123 silver badges237 bronze badges
60.6k18 gold badges123 silver badges237 bronze badges
Txs. Another funny thing is thatconfigure-trackpointtells me it doesn't detect anything even though the device is working after reloading of module.
– mgw
Jul 22 at 10:15
@mgw I've never usedconfigure-trackpoint. You would be best served posting a new question about that problem. In the meantime click the grey check mark next to the answer if it solves the current question. Thanks.
– WinEunuuchs2Unix
Jul 22 at 15:39
It's "only" a workaround. Let's wait for the next kernel update. Txs for the script @WinEunuuchs2Unix
– mgw
Jul 23 at 15:57
add a comment
|
Txs. Another funny thing is thatconfigure-trackpointtells me it doesn't detect anything even though the device is working after reloading of module.
– mgw
Jul 22 at 10:15
@mgw I've never usedconfigure-trackpoint. You would be best served posting a new question about that problem. In the meantime click the grey check mark next to the answer if it solves the current question. Thanks.
– WinEunuuchs2Unix
Jul 22 at 15:39
It's "only" a workaround. Let's wait for the next kernel update. Txs for the script @WinEunuuchs2Unix
– mgw
Jul 23 at 15:57
Txs. Another funny thing is that
configure-trackpoint tells me it doesn't detect anything even though the device is working after reloading of module.– mgw
Jul 22 at 10:15
Txs. Another funny thing is that
configure-trackpoint tells me it doesn't detect anything even though the device is working after reloading of module.– mgw
Jul 22 at 10:15
@mgw I've never used
configure-trackpoint. You would be best served posting a new question about that problem. In the meantime click the grey check mark next to the answer if it solves the current question. Thanks.– WinEunuuchs2Unix
Jul 22 at 15:39
@mgw I've never used
configure-trackpoint. You would be best served posting a new question about that problem. In the meantime click the grey check mark next to the answer if it solves the current question. Thanks.– WinEunuuchs2Unix
Jul 22 at 15:39
It's "only" a workaround. Let's wait for the next kernel update. Txs for the script @WinEunuuchs2Unix
– mgw
Jul 23 at 15:57
It's "only" a workaround. Let's wait for the next kernel update. Txs for the script @WinEunuuchs2Unix
– mgw
Jul 23 at 15:57
add a comment
|
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%2f1159957%2fthinkpad-trackpoint-and-trackpoint-keys-disabled-after-suspend%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