touchpad acts funny after sleep The 2019 Stack Overflow Developer Survey Results Are InUbuntu touchpad issues - mouse pointer jumps aroundTouchpad change in behaviour after sleepWhere synaptic touchpad settings in user account?Disabling touchpad after suspend/resumeUnstable Mouse Pointer using Synaptics TouchpadLeft Mouse sometimes stops working after SleepKeeping the trackpad disabledHow to keep touchpad deactivated when I'm typing?Weird touchpad behaviour on ubuntu 16.04Computer does not resume from sleep, troubles booting upubuntu 16.04 touchpad not workingProblems with the Touchpad

Can a flute soloist sit?

Aging parents with no investments

Why can Shazam fly?

Resizing object distorts it (Illustrator CC 2018)

Identify boardgame from Big movie

What is the accessibility of a package's `Private` context variables?

Loose spokes after only a few rides

Why isn't airport relocation done gradually?

Is "plugging out" electronic devices an American expression?

Deal with toxic manager when you can't quit

Geography at the pixel level

Output the Arecibo Message

Where to refill my bottle in India?

Did Scotland spend $250,000 for the slogan "Welcome to Scotland"?

Can someone be penalized for an "unlawful" act if no penalty is specified?

How to manage monthly salary

What does ひと匙 mean in this manga and has it been used colloquially?

Are there incongruent pythagorean triangles with the same perimeter and same area?

When should I buy a clipper card after flying to OAK?

What to do when moving next to a bird sanctuary with a loosely-domesticated cat?

Do these rules for Critical Successes and Critical Failures seem fair?

Should I use my personal e-mail address, or my workplace one, when registering to external websites for work purposes?

Is a "Democratic" Oligarchy-Style System Possible?

Apparent duplicates between Haynes service instructions and MOT



touchpad acts funny after sleep



The 2019 Stack Overflow Developer Survey Results Are InUbuntu touchpad issues - mouse pointer jumps aroundTouchpad change in behaviour after sleepWhere synaptic touchpad settings in user account?Disabling touchpad after suspend/resumeUnstable Mouse Pointer using Synaptics TouchpadLeft Mouse sometimes stops working after SleepKeeping the trackpad disabledHow to keep touchpad deactivated when I'm typing?Weird touchpad behaviour on ubuntu 16.04Computer does not resume from sleep, troubles booting upubuntu 16.04 touchpad not workingProblems with the Touchpad



.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








1















Sometimes, when I wake my laptop from sleep, the touchpad acts funny. The mouse pointer jump on the screen and it is really hard to control the mouse. I tried to turn of and on the touchpad in ubuntu control center, hoping this will unload and load the module and it didn't help. Restarting the machine solve this.










share|improve this question




























    1















    Sometimes, when I wake my laptop from sleep, the touchpad acts funny. The mouse pointer jump on the screen and it is really hard to control the mouse. I tried to turn of and on the touchpad in ubuntu control center, hoping this will unload and load the module and it didn't help. Restarting the machine solve this.










    share|improve this question
























      1












      1








      1


      2






      Sometimes, when I wake my laptop from sleep, the touchpad acts funny. The mouse pointer jump on the screen and it is really hard to control the mouse. I tried to turn of and on the touchpad in ubuntu control center, hoping this will unload and load the module and it didn't help. Restarting the machine solve this.










      share|improve this question














      Sometimes, when I wake my laptop from sleep, the touchpad acts funny. The mouse pointer jump on the screen and it is really hard to control the mouse. I tried to turn of and on the touchpad in ubuntu control center, hoping this will unload and load the module and it didn't help. Restarting the machine solve this.







      mouse touchpad suspend






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Oct 28 '13 at 18:42









      YotamYotam

      78031021




      78031021




















          4 Answers
          4






          active

          oldest

          votes


















          2














          Restarting the driver helps:



          Just Ctrl+alt+T, and run:



          sudo rmmod psmouse

          sudo modprobe psmouse


          On a Macbook I think you may need to use "appletouch" instead of psmouse.






          share|improve this answer






























            2














            It is an old topic, but I want to answer my solution, because it seems that pointer devices does not really like other power states.

            BTW this is a good way for module "reset" if you have problems with a device after suspend/hibernate etc, not just for touchpad.



            My problem was exactly the same:

            - After hibernate, my touch pad was hard to use,

            - but my connected USB mouse was OK.



            Following the answer from NoBugs I realized with




            lsmod | grep touch




            that my device name is "hid_multitouch"



            sudo rmmod hid_multitouch
            sudo modprobe hid_multitouch


            ... and my touch pad worked well again.



            I wrote a script to a file in /etc/pm/sleep.d



            sudo pico /etc/pm/sleep.d/20_touchpad_reset


            with the following content:



            case "$1" in
            thaw)
            rmmod hid_multitouch
            modprobe hid_multitouch
            ;;
            esac



            ... and made it executable with




            sudo chmod +x /etc/pm/sleep.d/20_touchpad_reset




            This snippet makes exactly the same as the above mentioned commands, but

            - automatically

            - run only after hibernation

            from now on




            sudo pm-hibernate




            working nicely.



            BUT pm-tools are not used by decent Ubuntu (Debian), so we need to install a service for systemd.



            For this I created I created a service file:




            sudo pico /lib/systemd/system/touchpad-reset.service




            with the following text:
            [Unit]
            Description=Reset multitouch device after hibernate
            After=hibernate.target
            After=hybrid-sleep.target
            [Service]
            ExecStart=/bin/bash /etc/pm/sleep.d/20_touchpad_reset thaw
            [Install]
            WantedBy=hibernate.target
            WantedBy=hybrid-sleep.target

            ... then I acivated my new service:




            sudo systemctl enable touchpad-reset.service




            You can check if everything worked well with:




            sudo systemctl status touchpad-reset.service







            share|improve this answer
































              0














              Running 17.04 on an HP ENVY 15 360 with the same issue. I tried the solutions provided to no avail.



              Started just powering off instead of sleep every time. Super annoying.



              Then it happened again, from fresh boot. So not power management at all.



              Check to see if you are using the Synaptics driver, that may be the issue:



              The details and solution here worked for me: Ubuntu touchpad issues - mouse pointer jumps around






              share|improve this answer






























                0














                I have the same problem with synaptics touchpad on my HP Probook G6 after sleep on ubuntu 18.04.
                The solution is the same as V-Mark suggested, but reloading i2c_hid module instead of hid_multitouch.



                sudo rmmod i2c_hid
                sudo modprobe i2c-hid


                And it starts to work smooth.






                share|improve this answer

























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



                  );













                  draft saved

                  draft discarded


















                  StackExchange.ready(
                  function ()
                  StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f367441%2ftouchpad-acts-funny-after-sleep%23new-answer', 'question_page');

                  );

                  Post as a guest















                  Required, but never shown

























                  4 Answers
                  4






                  active

                  oldest

                  votes








                  4 Answers
                  4






                  active

                  oldest

                  votes









                  active

                  oldest

                  votes






                  active

                  oldest

                  votes









                  2














                  Restarting the driver helps:



                  Just Ctrl+alt+T, and run:



                  sudo rmmod psmouse

                  sudo modprobe psmouse


                  On a Macbook I think you may need to use "appletouch" instead of psmouse.






                  share|improve this answer



























                    2














                    Restarting the driver helps:



                    Just Ctrl+alt+T, and run:



                    sudo rmmod psmouse

                    sudo modprobe psmouse


                    On a Macbook I think you may need to use "appletouch" instead of psmouse.






                    share|improve this answer

























                      2












                      2








                      2







                      Restarting the driver helps:



                      Just Ctrl+alt+T, and run:



                      sudo rmmod psmouse

                      sudo modprobe psmouse


                      On a Macbook I think you may need to use "appletouch" instead of psmouse.






                      share|improve this answer













                      Restarting the driver helps:



                      Just Ctrl+alt+T, and run:



                      sudo rmmod psmouse

                      sudo modprobe psmouse


                      On a Macbook I think you may need to use "appletouch" instead of psmouse.







                      share|improve this answer












                      share|improve this answer



                      share|improve this answer










                      answered Dec 13 '13 at 2:00









                      NoBugsNoBugs

                      56631341




                      56631341























                          2














                          It is an old topic, but I want to answer my solution, because it seems that pointer devices does not really like other power states.

                          BTW this is a good way for module "reset" if you have problems with a device after suspend/hibernate etc, not just for touchpad.



                          My problem was exactly the same:

                          - After hibernate, my touch pad was hard to use,

                          - but my connected USB mouse was OK.



                          Following the answer from NoBugs I realized with




                          lsmod | grep touch




                          that my device name is "hid_multitouch"



                          sudo rmmod hid_multitouch
                          sudo modprobe hid_multitouch


                          ... and my touch pad worked well again.



                          I wrote a script to a file in /etc/pm/sleep.d



                          sudo pico /etc/pm/sleep.d/20_touchpad_reset


                          with the following content:



                          case "$1" in
                          thaw)
                          rmmod hid_multitouch
                          modprobe hid_multitouch
                          ;;
                          esac



                          ... and made it executable with




                          sudo chmod +x /etc/pm/sleep.d/20_touchpad_reset




                          This snippet makes exactly the same as the above mentioned commands, but

                          - automatically

                          - run only after hibernation

                          from now on




                          sudo pm-hibernate




                          working nicely.



                          BUT pm-tools are not used by decent Ubuntu (Debian), so we need to install a service for systemd.



                          For this I created I created a service file:




                          sudo pico /lib/systemd/system/touchpad-reset.service




                          with the following text:
                          [Unit]
                          Description=Reset multitouch device after hibernate
                          After=hibernate.target
                          After=hybrid-sleep.target
                          [Service]
                          ExecStart=/bin/bash /etc/pm/sleep.d/20_touchpad_reset thaw
                          [Install]
                          WantedBy=hibernate.target
                          WantedBy=hybrid-sleep.target

                          ... then I acivated my new service:




                          sudo systemctl enable touchpad-reset.service




                          You can check if everything worked well with:




                          sudo systemctl status touchpad-reset.service







                          share|improve this answer





























                            2














                            It is an old topic, but I want to answer my solution, because it seems that pointer devices does not really like other power states.

                            BTW this is a good way for module "reset" if you have problems with a device after suspend/hibernate etc, not just for touchpad.



                            My problem was exactly the same:

                            - After hibernate, my touch pad was hard to use,

                            - but my connected USB mouse was OK.



                            Following the answer from NoBugs I realized with




                            lsmod | grep touch




                            that my device name is "hid_multitouch"



                            sudo rmmod hid_multitouch
                            sudo modprobe hid_multitouch


                            ... and my touch pad worked well again.



                            I wrote a script to a file in /etc/pm/sleep.d



                            sudo pico /etc/pm/sleep.d/20_touchpad_reset


                            with the following content:



                            case "$1" in
                            thaw)
                            rmmod hid_multitouch
                            modprobe hid_multitouch
                            ;;
                            esac



                            ... and made it executable with




                            sudo chmod +x /etc/pm/sleep.d/20_touchpad_reset




                            This snippet makes exactly the same as the above mentioned commands, but

                            - automatically

                            - run only after hibernation

                            from now on




                            sudo pm-hibernate




                            working nicely.



                            BUT pm-tools are not used by decent Ubuntu (Debian), so we need to install a service for systemd.



                            For this I created I created a service file:




                            sudo pico /lib/systemd/system/touchpad-reset.service




                            with the following text:
                            [Unit]
                            Description=Reset multitouch device after hibernate
                            After=hibernate.target
                            After=hybrid-sleep.target
                            [Service]
                            ExecStart=/bin/bash /etc/pm/sleep.d/20_touchpad_reset thaw
                            [Install]
                            WantedBy=hibernate.target
                            WantedBy=hybrid-sleep.target

                            ... then I acivated my new service:




                            sudo systemctl enable touchpad-reset.service




                            You can check if everything worked well with:




                            sudo systemctl status touchpad-reset.service







                            share|improve this answer



























                              2












                              2








                              2







                              It is an old topic, but I want to answer my solution, because it seems that pointer devices does not really like other power states.

                              BTW this is a good way for module "reset" if you have problems with a device after suspend/hibernate etc, not just for touchpad.



                              My problem was exactly the same:

                              - After hibernate, my touch pad was hard to use,

                              - but my connected USB mouse was OK.



                              Following the answer from NoBugs I realized with




                              lsmod | grep touch




                              that my device name is "hid_multitouch"



                              sudo rmmod hid_multitouch
                              sudo modprobe hid_multitouch


                              ... and my touch pad worked well again.



                              I wrote a script to a file in /etc/pm/sleep.d



                              sudo pico /etc/pm/sleep.d/20_touchpad_reset


                              with the following content:



                              case "$1" in
                              thaw)
                              rmmod hid_multitouch
                              modprobe hid_multitouch
                              ;;
                              esac



                              ... and made it executable with




                              sudo chmod +x /etc/pm/sleep.d/20_touchpad_reset




                              This snippet makes exactly the same as the above mentioned commands, but

                              - automatically

                              - run only after hibernation

                              from now on




                              sudo pm-hibernate




                              working nicely.



                              BUT pm-tools are not used by decent Ubuntu (Debian), so we need to install a service for systemd.



                              For this I created I created a service file:




                              sudo pico /lib/systemd/system/touchpad-reset.service




                              with the following text:
                              [Unit]
                              Description=Reset multitouch device after hibernate
                              After=hibernate.target
                              After=hybrid-sleep.target
                              [Service]
                              ExecStart=/bin/bash /etc/pm/sleep.d/20_touchpad_reset thaw
                              [Install]
                              WantedBy=hibernate.target
                              WantedBy=hybrid-sleep.target

                              ... then I acivated my new service:




                              sudo systemctl enable touchpad-reset.service




                              You can check if everything worked well with:




                              sudo systemctl status touchpad-reset.service







                              share|improve this answer















                              It is an old topic, but I want to answer my solution, because it seems that pointer devices does not really like other power states.

                              BTW this is a good way for module "reset" if you have problems with a device after suspend/hibernate etc, not just for touchpad.



                              My problem was exactly the same:

                              - After hibernate, my touch pad was hard to use,

                              - but my connected USB mouse was OK.



                              Following the answer from NoBugs I realized with




                              lsmod | grep touch




                              that my device name is "hid_multitouch"



                              sudo rmmod hid_multitouch
                              sudo modprobe hid_multitouch


                              ... and my touch pad worked well again.



                              I wrote a script to a file in /etc/pm/sleep.d



                              sudo pico /etc/pm/sleep.d/20_touchpad_reset


                              with the following content:



                              case "$1" in
                              thaw)
                              rmmod hid_multitouch
                              modprobe hid_multitouch
                              ;;
                              esac



                              ... and made it executable with




                              sudo chmod +x /etc/pm/sleep.d/20_touchpad_reset




                              This snippet makes exactly the same as the above mentioned commands, but

                              - automatically

                              - run only after hibernation

                              from now on




                              sudo pm-hibernate




                              working nicely.



                              BUT pm-tools are not used by decent Ubuntu (Debian), so we need to install a service for systemd.



                              For this I created I created a service file:




                              sudo pico /lib/systemd/system/touchpad-reset.service




                              with the following text:
                              [Unit]
                              Description=Reset multitouch device after hibernate
                              After=hibernate.target
                              After=hybrid-sleep.target
                              [Service]
                              ExecStart=/bin/bash /etc/pm/sleep.d/20_touchpad_reset thaw
                              [Install]
                              WantedBy=hibernate.target
                              WantedBy=hybrid-sleep.target

                              ... then I acivated my new service:




                              sudo systemctl enable touchpad-reset.service




                              You can check if everything worked well with:




                              sudo systemctl status touchpad-reset.service








                              share|improve this answer














                              share|improve this answer



                              share|improve this answer








                              edited Apr 13 '17 at 12:25









                              Community

                              1




                              1










                              answered Nov 12 '15 at 21:54









                              V-MarkV-Mark

                              303211




                              303211





















                                  0














                                  Running 17.04 on an HP ENVY 15 360 with the same issue. I tried the solutions provided to no avail.



                                  Started just powering off instead of sleep every time. Super annoying.



                                  Then it happened again, from fresh boot. So not power management at all.



                                  Check to see if you are using the Synaptics driver, that may be the issue:



                                  The details and solution here worked for me: Ubuntu touchpad issues - mouse pointer jumps around






                                  share|improve this answer



























                                    0














                                    Running 17.04 on an HP ENVY 15 360 with the same issue. I tried the solutions provided to no avail.



                                    Started just powering off instead of sleep every time. Super annoying.



                                    Then it happened again, from fresh boot. So not power management at all.



                                    Check to see if you are using the Synaptics driver, that may be the issue:



                                    The details and solution here worked for me: Ubuntu touchpad issues - mouse pointer jumps around






                                    share|improve this answer

























                                      0












                                      0








                                      0







                                      Running 17.04 on an HP ENVY 15 360 with the same issue. I tried the solutions provided to no avail.



                                      Started just powering off instead of sleep every time. Super annoying.



                                      Then it happened again, from fresh boot. So not power management at all.



                                      Check to see if you are using the Synaptics driver, that may be the issue:



                                      The details and solution here worked for me: Ubuntu touchpad issues - mouse pointer jumps around






                                      share|improve this answer













                                      Running 17.04 on an HP ENVY 15 360 with the same issue. I tried the solutions provided to no avail.



                                      Started just powering off instead of sleep every time. Super annoying.



                                      Then it happened again, from fresh boot. So not power management at all.



                                      Check to see if you are using the Synaptics driver, that may be the issue:



                                      The details and solution here worked for me: Ubuntu touchpad issues - mouse pointer jumps around







                                      share|improve this answer












                                      share|improve this answer



                                      share|improve this answer










                                      answered Jun 15 '17 at 14:36









                                      TheCrossfitJamesTheCrossfitJames

                                      1




                                      1





















                                          0














                                          I have the same problem with synaptics touchpad on my HP Probook G6 after sleep on ubuntu 18.04.
                                          The solution is the same as V-Mark suggested, but reloading i2c_hid module instead of hid_multitouch.



                                          sudo rmmod i2c_hid
                                          sudo modprobe i2c-hid


                                          And it starts to work smooth.






                                          share|improve this answer





























                                            0














                                            I have the same problem with synaptics touchpad on my HP Probook G6 after sleep on ubuntu 18.04.
                                            The solution is the same as V-Mark suggested, but reloading i2c_hid module instead of hid_multitouch.



                                            sudo rmmod i2c_hid
                                            sudo modprobe i2c-hid


                                            And it starts to work smooth.






                                            share|improve this answer



























                                              0












                                              0








                                              0







                                              I have the same problem with synaptics touchpad on my HP Probook G6 after sleep on ubuntu 18.04.
                                              The solution is the same as V-Mark suggested, but reloading i2c_hid module instead of hid_multitouch.



                                              sudo rmmod i2c_hid
                                              sudo modprobe i2c-hid


                                              And it starts to work smooth.






                                              share|improve this answer















                                              I have the same problem with synaptics touchpad on my HP Probook G6 after sleep on ubuntu 18.04.
                                              The solution is the same as V-Mark suggested, but reloading i2c_hid module instead of hid_multitouch.



                                              sudo rmmod i2c_hid
                                              sudo modprobe i2c-hid


                                              And it starts to work smooth.







                                              share|improve this answer














                                              share|improve this answer



                                              share|improve this answer








                                              edited 14 hours ago

























                                              answered 2 days ago









                                              Pavel KrutikhinPavel Krutikhin

                                              62




                                              62



























                                                  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%2f367441%2ftouchpad-acts-funny-after-sleep%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

                                                  Tamil (spriik) Luke uk diar | Nawigatjuun

                                                  Align equal signs while including text over equalitiesAMS align: left aligned text/math plus multicolumn alignmentMultiple alignmentsAligning equations in multiple placesNumbering and aligning an equation with multiple columnsHow to align one equation with another multline equationUsing \ in environments inside the begintabularxNumber equations and preserving alignment of equal signsHow can I align equations to the left and to the right?Double equation alignment problem within align enviromentAligned within align: Why are they right-aligned?

                                                  Where does the image of a data connector as a sharp metal spike originate from?Where does the concept of infected people turning into zombies only after death originate from?Where does the motif of a reanimated human head originate?Where did the notion that Dragons could speak originate?Where does the archetypal image of the 'Grey' alien come from?Where did the suffix '-Man' originate?Where does the notion of being injured or killed by an illusion originate?Where did the term “sophont” originate?Where does the trope of magic spells being driven by advanced technology originate from?Where did the term “the living impaired” originate?