Saturday, April 27, 2024
 Popular · Latest · Hot · Upcoming
4
rated 0 times [  4] [ 0]  / answers: 1 / hits: 7741  / 1 Year ago, wed, march 22, 2023, 3:53:10

I've just installed ubuntu 13.04 on my notebook Compaq 6720s and found the cpu fun working at high speed after waking system up.
When the system is booted the fan works normaly and realy calm. But after sleep and waking up fan is really noisy.
I hadn't this problem with ubuntu 12.10.
Any help appreciated.


More From » suspend

 Answers
1

I've found solution for my Compaq 6720s fan and Ubuntu 13.04 here:



Create the file ”/etc/pm/sleep.d/99fancontrol.sh”, insert the code below and chmod 755 it.
Script:



#!/bin/sh
#
#

case "$1" in
hibernate|suspend)
# Stopping is not required.
;;
thaw|resume)
# In background.
echo -n 0 > /sys/devices/virtual/thermal/cooling_device0/cur_state;
sleep 2
echo -n 0 > /sys/devices/virtual/thermal/cooling_device1/cur_state;
sleep 2
echo -n 0 > /sys/devices/virtual/thermal/cooling_device2/cur_state;

;;
*) exit $NA
;;
esac

[#31525] Thursday, March 23, 2023, 1 Year  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
atchcommo

Total Points: 114
Total Questions: 130
Total Answers: 101

Location: Cook Islands
Member since Sat, Oct 16, 2021
3 Years ago
atchcommo questions
Fri, May 13, 22, 08:22, 2 Years ago
Wed, Mar 9, 22, 20:14, 2 Years ago
;