Page 6 of 10 FirstFirst ... 45678 ... LastLast
Results 51 to 60 of 100

Thread: Cannot suspend or hibernate Asus N61J Laptop

  1. #51
    Join Date
    Oct 2008
    Beans
    206
    Distro
    Ubuntu 10.10 Maverick Meerkat

    Re: Cannot suspend or hibernate Asus N61J Laptop

    update:
    i've been trying some scripts i dug up on the internet but nothing worked. i found myself on the following page, decided to give it a shot and it finally worked:

    http://thecodecentral.com/2011/01/18...ot-working-bug

    i now feel safe enough to clone my ubuntu installation seeing that i've got everything i want working configured.
    HP Envy 17
    ubuntu 10.10 kernel 2.6.37
    windows 7

  2. #52
    Join Date
    Jan 2010
    Location
    Canada, Quebec
    Beans
    218
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: Cannot suspend or hibernate Asus N61J Laptop

    work for me. Asus G60Jx-RBBX05
    bool doYouWantToFixMyComputer(Computer &my_computer)
    {
    return false;
    }

  3. #53
    Join Date
    Oct 2005
    Location
    Wabasha MN
    Beans
    2,571
    Distro
    Ubuntu

    Re: Cannot suspend or hibernate Asus N61J Laptop

    I have a Dell Inspiron 1521, the suspend works, but when it go into hibernation it does not come out, so I thought I would try this script. It didn't work for me, in fact it made it worst. Suspend and hibernate both would not come back up. I had to force a restart. I deleted the scrip and all is back the way it was. It looks like my problem is something else. I am glad it help with the Asus.
    Information on my Main laptop. Information on my small laptop Dell 11 3000
    Using a Asus 3632QM laptop with 8gig RAM, 250 SSD.
    Machine Registered 366271, 366273, 366275.
    Registered Ubuntu user number 18630. Registered Linux user number 458093.

  4. #54
    Join Date
    Sep 2009
    Location
    Virginia, USA
    Beans
    50
    Distro
    Ubuntu 10.04 Lucid Lynx

    Re: Cannot suspend or hibernate Asus N61J Laptop

    Excellent! Worked for my ASUS X52J. Thanks a lot!

  5. #55
    Join Date
    Jan 2011
    Location
    New Zealand
    Beans
    8
    Distro
    Ubuntu 10.10 Maverick Meerkat

    Re: Cannot suspend or hibernate Asus N61J Laptop

    Thanks a lot John Dias, the solution provided worked on my Dell Inspiron 1545.

  6. #56
    Join Date
    Nov 2009
    Beans
    2

    Re: Cannot suspend or hibernate Asus N61J Laptop

    Quote Originally Posted by zero7404 View Post
    update:
    i've been trying some scripts i dug up on the internet but nothing worked. i found myself on the following page, decided to give it a shot and it finally worked:

    http://thecodecentral.com/2011/01/18...ot-working-bug

    i now feel safe enough to clone my ubuntu installation seeing that i've got everything i want working configured.
    thanks for the link to the thread, i was about to give up

  7. #57

    Re: Cannot suspend or hibernate Asus N61J Laptop

    Works on U41J. Thanks.

  8. #58
    Join Date
    Nov 2005
    Beans
    19

    Re: Cannot suspend or hibernate Asus N61J Laptop

    Quote Originally Posted by codecentral View Post
    Here's another script based on the scripts posted on this thread. It auto pulls the addresses from EHCI and XHCI:

    http://thecodecentral.com/2011/01/18...ot-working-bug

    Hope it will help someone.
    Yep, this did the trick for me( on asus u45jc, xubuntu 10.10). Using the "John Dias' + brocktice" original method worked as far as suspend is concerned. However, after resuming, my external usb devices (mouse, usb thumb drive) were no longer recognized by the system. I also removed the /etc/pm/config.d/usb3-suspend-workaround script from step 2. in John Dias prescription.

    Thanks!

  9. #59
    Join Date
    Jan 2011
    Location
    shiraz
    Beans
    29
    Distro
    Ubuntu 10.10 Maverick Meerkat

    Re: Cannot suspend or hibernate Asus N61J Laptop

    i am confused please help me in clear way for my asus n43jf

  10. #60
    Join Date
    Jan 2011
    Location
    shiraz
    Beans
    29
    Distro
    Ubuntu 10.10 Maverick Meerkat

    Re: Cannot suspend or hibernate Asus N61J Laptop

    Quote Originally Posted by anjexe View Post
    i am confused please help me in clear way for my asus n43jf
    i do so it works

    goto patch
    /etc/pm/sleep.d/

    create document named : 20_custom-ehci_hcd

    then as http://thecodecentral.com/2011/01/18...ot-working-bug

    Insert the following code into the file i have just created:
    #!/bin/sh TMPLIST_E=/tmp/ehci-dev-list TMPLIST_X=/tmp/xhci-dev-list E_DIR=/sys/bus/pci/drivers/ehci_hcd X_DIR=/sys/bus/pci/drivers/xhci_hcd E_BIND=$E_DIR""/bind E_UNBIND=$E_DIR""/unbind X_BIND=$X_DIR""/bind X_UNBIND=$X_DIR""/unbind #param1 = temp file, param2 = device dir, param3 = unbind unbindDev (){ #inspired by http://art.ubuntuforums.org/showpost...0&postcount=19 echo -n '' > $1 for i in `ls $2 | egrep '[0-9a-z]+\:[0-9a-z]+\:.*$'`; do echo -n "$i" | tee $3 echo "$i" >> $1 done } #param1 = tem file, param2 = bind bindDev(){ [ -f $1 ] || return for i in `cat $1`; do echo -n "$i" | tee $2 done rm $1 } case "${1}" in hibernate|suspend) unbindDev $TMPLIST_E $E_DIR $E_UNBIND unbindDev $TMPLIST_X $X_DIR $X_UNBIND ;; resume|thaw) bindDev $TMPLIST_E $E_BIND bindDev $TMPLIST_X $X_BIND ;; esac

    and

    dd executable permission: sudo chmod 755 /etc/pm/sleep.d/20_custom-ehci_hcd




    tnx all

Page 6 of 10 FirstFirst ... 45678 ... LastLast

Tags for this Thread

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
  •