Skip to content
Advertisement

Script in ubuntu to take CPU temperature and CPU usage in the same time and save to file [closed]

I need to write script or command line code in Ubuntu which take CPU temperature and % of CPU usage from lm_sensors or something similar and this information I would like to save in .txt file with date and time of each measurement. I tried to write .sh file which is below, temperature works but CPU usage doesn’t work correctly it only save first measurement everytime. Can somebody help me?

JavaScript

Advertisement

Answer

You can calculate the CPU usage as such, but only over time. The cpu usage isn’t stored in a file, you have to calculate it yourself:

JavaScript

If you have a cpu temperature sensor, it’s located in /sys/class/hwmon. You need to figure out yourself which one is correct, since that’s driver dependent. Mine is “coretemp”, I guess.

JavaScript

Once you found out the above, you can do the following:

JavaScript
User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement