Results 1 to 10 of 10

Thread: Touchpad unresponsive after each suspend after 14.10 upgrade

  1. #1
    Join Date
    Mar 2006
    Beans
    2,423

    Touchpad unresponsive after each suspend after 14.10 upgrade

    Just upgraded to 14.10 from 14.04 through the software updater tool. No hiccups during the upgrade, but I noticed that now when I suspend and resume, my touchpad becomes unresponsive unless I restart. My external USB mouse works fine either way, just the touchpad does not work. I have an acer aspire E5-571 (link here).

    Any thoughts?

  2. #2
    Join Date
    Oct 2014
    Beans
    1

    Re: Touchpad unresponsive after each suspend after 14.10 upgrade

    Hi there,
    I'm having similar problems (on the same laptop). Unfortunately, I don't have access to my laptop at present, but I found this. I'm going to try it out as soon as I get home. The part which I think is of most interest:
    Touchpad not working after login

    This usually happens when you disable your touchpad and then suspend your computer. To fix this just run this command:
    Code:
    gconftool-2 --set --type boolean /desktop/gnome/peripherals/touchpad/touchpad_enabled true
    If nothing else works, please see the official Ubuntu touchpad debugging article.
    I hope this helps!

  3. #3
    Join Date
    Mar 2006
    Beans
    2,423

    Re: Touchpad unresponsive after each suspend after 14.10 upgrade

    Quote Originally Posted by reidswan101 View Post
    Hi there,
    I'm having similar problems (on the same laptop). Unfortunately, I don't have access to my laptop at present, but I found this. I'm going to try it out as soon as I get home. The part which I think is of most interest:


    I hope this helps!
    Ah, thank you for the reply. Unfortunately, I think this only works if you manually disable the touchpad prior to suspend, with the common Fn + F7 on most laptops.

    I tried that command to no avail in my case. I guess we gotta keep trying!

  4. #4
    Join Date
    Oct 2014
    Beans
    1

    Re: Touchpad unresponsive after each suspend after 14.10 upgrade

    Hello,
    same problem here :/ I have an Acer Aspire E5-471 with Elantech touchpad and happends exactly the same, everything works fine until I suspend and resume the touchpad totally dies. I have no idea how to solve but if I can help in something like posting more info tell me, i'll keep searching anyway.

  5. #5
    Join Date
    Mar 2006
    Beans
    2,423

    Re: Touchpad unresponsive after each suspend after 14.10 upgrade

    For now I've downgraded back to 14.04 as this is quite an annoying problem for me (I suspend and resume my laptop all the time) but if someone can figure this out I'd very much like to mark this thread as solved

  6. #6
    Join Date
    Jul 2011
    Beans
    5

    Re: Touchpad unresponsive after each suspend after 14.10 upgrade

    I have open a bug for this:
    https://bugs.launchpad.net/ubuntu/+s...s/+bug/1393079

    Please check "this bug affects you", or contribute any useful info to increase the chances of it being looked at

  7. #7
    Join Date
    Mar 2006
    Beans
    2,423

    Re: Touchpad unresponsive after each suspend after 14.10 upgrade

    Quote Originally Posted by BoDlulu View Post
    I have open a bug for this:
    https://bugs.launchpad.net/ubuntu/+s...s/+bug/1393079

    Please check "this bug affects you", or contribute any useful info to increase the chances of it being looked at
    Awesome, thank you.

  8. #8
    Join Date
    Jan 2010
    Beans
    7

    Re: Touchpad unresponsive after each suspend after 14.10 upgrade

    Did anybody find a good solution or workaround for this annoying issue? I have of course tipped the "beeing affected" button in launchpad, but there are only 9 people beeing affected, can this be???

  9. #9
    Join Date
    Sep 2013
    Beans
    1

    Re: Touchpad unresponsive after each suspend after 14.10 upgrade

    I've just tried the script mentioned here https://bugs.launchpad.net/ubuntu/+s...079/comments/7 (copied below) with a positive result.

    This is what I did to fix this for me:

    # sudo touch /etc/pm/sleep.d/10_touchpad
    # sudo chmod 755 /etc/pm/sleep.d/10_touchpad

    Then edit the file 10_touchpad and paste the following into it:
    Code:
    #!/bin/sh
    case "${1}" in
            resume|thaw)
                    rmmod hid_multitouch
                    modprobe hid_multitouch
                    ;;
    esac
    Last edited by mitya-2; January 30th, 2015 at 04:01 PM.

  10. #10
    Join Date
    Jun 2015
    Beans
    1

    Re: Touchpad unresponsive after each suspend after 14.10 upgrade

    mitya-2's suggestion worked on my Lenovo Yoga. I tested it several times. The mouse and trackpad click events are now working after resume from suspend.
    Thank you very much.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •