Hi, using kernel 3.8.0-23-generic, 'normal' ubuntu 13.04, HP6830s and an
older HP laptop of which I don't know by heart the model, same problem.

I modified the script a little; I presume it will work on all laptops
like this since it does for mine:

nano /etc/pm/sleep.d/99fancontrol.sh

#!/bin/bash
#
#

case "$1" in
 hibernate|suspend)
  # Stopping is not required.
  ;;
 thaw|resume)
  # In background.
  for cooling_device in $(ls 
/sys/devices/virtual/thermal/cooling_device?/cur_state -1)
  do
   echo -n 0 > $cooling_device
   sleep 2
  done
  ;;
 *) exit $NA
  ;;
esac

chmod +x /etc/pm/sleep.d/99fancontrol.sh

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1094722

Title:
  Raring: regression: fan keeps spinning at full speed after suspend

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1094722/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to