Showing posts with label suspend. Show all posts
Showing posts with label suspend. Show all posts

Monday, August 10, 2009

eee 901 hang during ubuntu linux suspend

My eee 901 was randomly hanging when entering a suspend mode. What would happen is when I try to resume it would just sit at a black screen. I would need to hard reset my system to bring it back online. Searching the web, I found the following that seems to be working for me.

  • vi /etc/pm/sleep.d/55hddpause
    • Add the following:

      #!/bin/bash
      case $1 in
      suspend)
      echo "Is my script running???"
      sync
      sleep 10
      esac
  • chmod +x /etc/pm/sleep.d/55pause
After creating that script which will run when your computer suspends I have not had anymore issues with resuming.

References: