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;









1

















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










share|improve this question
































    1

















    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










    share|improve this question




























      1












      1








      1








      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










      share|improve this question















      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






      share|improve this question














      share|improve this question











      share|improve this question




      share|improve this question










      asked Jul 21 at 17:13









      mgwmgw

      266 bronze badges




      266 bronze badges























          1 Answer
          1






          active

          oldest

          votes


















          2


















          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.






          share|improve this answer




























          • 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












          • It's "only" a workaround. Let's wait for the next kernel update. Txs for the script @WinEunuuchs2Unix

            – mgw
            Jul 23 at 15:57













          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
          );



          );














          draft saved

          draft discarded
















          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









          2


















          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.






          share|improve this answer




























          • 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












          • It's "only" a workaround. Let's wait for the next kernel update. Txs for the script @WinEunuuchs2Unix

            – mgw
            Jul 23 at 15:57
















          2


















          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.






          share|improve this answer




























          • 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












          • It's "only" a workaround. Let's wait for the next kernel update. Txs for the script @WinEunuuchs2Unix

            – mgw
            Jul 23 at 15:57














          2














          2










          2









          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.






          share|improve this answer
















          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.







          share|improve this answer















          share|improve this answer




          share|improve this answer








          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 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












          • 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











          • @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

















          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



















          draft saved

          draft discarded















































          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.




          draft saved


          draft discarded














          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





















































          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









          Popular posts from this blog

          Distance measures on a map of a game The 2019 Stack Overflow Developer Survey Results Are Inmin distance in a graphShortest distance path on contour plotHow to plot a tilted map?Finding points outside of a diskDelaunay link distanceAnnulus from GeoDisks: drawing a ring on a mapNegative Correlation DistanceFind distance along a path (GPS coordinates)Finding position at given distance in a GeoPathMathematics behind distance estimation using camera

          How to get a smooth, uniform ParametricPlot of a 2D Region?How to plot a complicated Region?How to exclude a region from ParametricPlotHow discretize a region placing vertices on a specific non-uniform gridHow to transform a Plot or a ParametricPlot into a RegionHow can I get a smooth plot of a bounded region?Smooth ParametricPlot3D with RegionFunction?Smooth border of a region ParametricPlotSmooth region boundarySmooth region plot from list of pointsGet minimum y of a certain x in a region

          Genealogie vun de Merowenger Vum Merowech bis zum Chilperich I. | Navigatiounsmenü