Question: My laptop is slow - is it thermal throttling?
Try: watch -n 1 'grep MHz /proc/cpuinfo | sort -u; sensors | grep -E "Core|Package"'
Info: CPU clock speeds can drop when temperatures reach thermal limits. sensors displays live hardware temperatures, while the CPU frequency output shows current clock speeds. Low MHz under heavy load combined with high temperatures can indicate thermal throttling.
Examples:
- $
cat /sys/devices/system/cpu/cpu*/cpufreq/scaling_cur_freq# Check current CPU frequencies - $
sensors | grep -i temp# Filter temperature sensor readings - $
cpupower frequency-info# Inspect CPU frequency and governor settings
Note: Install hardware monitoring with sudo apt install lm-sensors and run sudo sensors-detect if needed. Modern CPUs can reduce their clock speed when temperatures approach thermal limits to protect the hardware. Look for sustained high temperatures together with reduced CPU frequency rather than relying on temperature alone.
Leave a Reply