How-To: Monitor SoC Temperature in Armbian at the Command Prompt
Share
Recently, we wanted to monitor the SoC temperature on an Armbian system (ROCKPro64 in this case). Here's a quick one-liner that will allow you to do just that from the terminal (command line), outputting the time and the temperature once per second:
while :; do date; cat /etc/armbianmonitor/datasources/soctemp; sleep 1; done
1 comment
To the ameridroid.com admin, Thanks for the informative and well-written post!