LinuxHippy
New Member
I was using this simple bash script to monitor CPU temperature on my rapberry pi computers and it seems to directly work with the N-4200.
It gives the temperature in degrees C and adds three place holders to that. So mine shows 46000 which is 46 degrees C.
Marty
Code:
#! /bin/bash
cat /sys/class/thermal/thermal_zone0/temp
It gives the temperature in degrees C and adds three place holders to that. So mine shows 46000 which is 46 degrees C.
Marty