Hi. On Thu, Oct 05, 2017 at 12:11:33PM -0400, Stephen P. Molnar wrote: > Is there a way to log the time and temperature data for the CPU from the > xsensors app? > > Or, a;alternately, is there an app that will allow me to save the CPU core > time temperature results?
/usr/bin/sensors from lm-sensors package will do it just fine. Put something like this in cron: date >> /tmp/cputemp.log; sensors | grep ^Core >> /tmp/cputemp.log Reco