Hy Guys
So ...
I've got such a cheap Acer Notebook with Turion X2 Ultra CPU (ZM - 82)
My First post with a fixIt's so exiting
Okay.... the Coretemp goes up to 90 - 93°C and then the system freezes.
Solution: Govenor is not probably working....
Load the right module for the CPU
After the module is loaded , please look at /scaling_governorCode:modprobe -v powernow-k8
If something like "userspace" comes out, then governor is waiting for an external tool that scale the CPUSpeedCode:cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor
Change it to "ondemand" or "conservative"
conservative is used to adjust the speed of the cpu step-by-step ( from 500MHz to 550MHz)Code:echo ondemand | tee /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor OR echo conservative | tee /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor
ondemand is used to adjust the speed with bigger jumps ( e.g from 500 MHz to 1500MHz)