CPU

To find cpu temperature on Linux, run

cat /sys/class/thermal/thermal_zone*/temp

You can also use sensors command, to install, use

apt install lm-sensors -y

To find cpu frequency, run

lscpu | grep "MHz"

To monitor CPU frequency, run

watch -n1 "cat /proc/cpuinfo | grep 'MHz' | head -n16"

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *