touchpad acts funny after sleepUbuntu 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

What to wear for invited talk in Canada

Does it makes sense to buy a new cycle to learn riding?

Add an angle to a sphere

Why was the "bread communication" in the arena of Catching Fire left out in the movie?

Prime joint compound before latex paint?

How to create a consistent feel for character names in a fantasy setting?

Deciding between multiple birth names and dates?

Extreme, but not acceptable situation and I can't start the work tomorrow morning

OA final episode explanation

Are objects structures and/or vice versa?

Denied boarding due to overcrowding, Sparpreis ticket. What are my rights?

When blogging recipes, how can I support both readers who want the narrative/journey and ones who want the printer-friendly recipe?

Is it wise to focus on putting odd beats on left when playing double bass drums?

How would photo IDs work for shapeshifters?

How can I fix this gap between bookcases I made?

What happens when a metallic dragon and a chromatic dragon mate?

How to move the player while also allowing forces to affect it

What is the meaning of "of trouble" in the following sentence?

Why is the design of haulage companies so “special”?

Can a planet have a different gravitational pull depending on its location in orbit around its sun?

Patience, young "Padovan"

How to manage monthly salary

Piano - What is the notation for a double stop where both notes in the double stop are different lengths?

Why do UK politicians seemingly ignore opinion polls on Brexit?



touchpad acts funny after sleep


Ubuntu 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 modeprobe 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 modeprobe 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 modeprobe 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 modeprobe 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 modeprobe i2c_hid


                                              And it starts to work smooth.







                                              share|improve this answer












                                              share|improve this answer



                                              share|improve this answer










                                              answered 4 hours ago









                                              Pavel KrutikhinPavel Krutikhin

                                              61




                                              61



























                                                  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

                                                  Are there any comparative studies done between Ashtavakra Gita and Buddhim?How is it wrong to believe that a self exists, or that it doesn't?Can you criticise or improve Ven. Bodhi's description of MahayanaWas the doctrine of 'Anatta', accepted as doctrine by modern Buddhism, actually taught by the Buddha?Relationship between Buddhism, Hinduism and Yoga?Comparison of Nirvana, Tao and Brahman/AtmaIs there a distinction between “ego identity” and “craving/hating”?Are there many differences between Taoism and Buddhism?Loss of “faith” in buddhismSimilarity between creation in Abrahamic religions and beginning of life in Earth mentioned Agganna Sutta?Are there studies about the difference between meditating in the morning versus in the evening?Can one follow Hinduism and Buddhism at the same time?Are there any prohibitions on participating in other religion's practices?Psychology of 'flow'

                                                  What to do with chalk when deepwater soloing? Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) Photo Competition: April - At Home in The Great OutdoorsIs it ok for my climbing shoes/chalk bag to get wet?What hand and finger exercises help with climbing?Chalk: pure, plus drying agent, liquid?What can I do with a retired rope and harness?What to do with the lap coiled rope if the belayer wishes to lead consecutive pitches?How do to a safety knot when abseiling with 2 ropes?What are the advantages of being short when climbing?When should you start to train with Campus Boards, Hang Boards and Peg Boards?Climbing: fear/panic on boulder wallWith what specific techniques are various bouldering grades associated?What are the most important numerical features to look for when comparing climbing ropes?

                                                  How to start Thunderbird minimized on start-up?How to run Thunderbird on startup, minimised?How to make Thunderbird Mail runs at startup?How do I start applications automatically on login?How can I delay a specific program on startup?How do I hide Thunderbird from the launcher while running?How to keep Thunderbird and Pidgin running on background?How to open Thunderbird minimised at startup in Ubuntu 16.04How to start Thunderbird minimized to Unity system tray on start-up?Minimize Thunderbird to Traythunderbird script to disable option: “delete message on server”Why is Thunderbird pegging a core at 100%?Thunderbird resets profile after second start upClearing out Thunderbird on UbuntuThunderbird and a shared “home” partitionBidirectionally synchronize Thunderbird profiles (POP3 mail accounts) between two computersWhy doesn't Ubuntu/Thunderbird save my PGP key?How to start Thunderbird minimized to Unity system tray on start-up?Recovering thunderbird files from quick formatted drive?