Check cpu
temperature
cat /sys/class/thermal/thermal_zone0/temp
Check cpu
temperature automation
#!/bin/bash
while :
do
cat /sys/class/thermal/thermal_zone0/temp
sleep 1
done
vi cpu_tem.sh
chmod +x cpu_tem.sh
./cpu_tem.sh
A NOTE FOR DEVELOPERS
Check cpu
temperature
cat /sys/class/thermal/thermal_zone0/temp
Check cpu
temperature automation
#!/bin/bash
while :
do
cat /sys/class/thermal/thermal_zone0/temp
sleep 1
done
vi cpu_tem.sh
chmod +x cpu_tem.sh
./cpu_tem.sh