|
|
Question : Problem: CPU FAN STAYS AT HIGH SPEED AFTER HIBERNATION
|
|
When I bring mt toshiba satillite laptop out of hibernation the fan stays at high speed. I have found what I think might work but havew no idea how to implement the fix. Anybody help me implement the fix of give me a different one. here is the fix I found:
Create the following script. in /etc/acpi/resume.d/75-dual-core-cpu-freq.sh
#!/bin/sh
SYS_DIR=/sys/devices/system/cpu #POLICY=performance ### # POLICY can be any of: # userspace powersave ondemand conservative performance # POLICY=ondemand
for CPU in `ls $SYS_DIR` do echo -n $POLICY > $SYS_DIR/$CPU/cpufreq/scaling_governor done #==========
Now the policy will be set correctly after a resume from hibernate or suspend state.
|
Answer : Problem: CPU FAN STAYS AT HIGH SPEED AFTER HIBERNATION
|
|
|
|
|