Monthly Archives: February 2024

Track cpu stats

#Run iostat to get the average cpu usage every 10 seconds for 10 times:iostat -x 10 10 >> /home/<user>/iostat.out.$(date +”%Y-%m-%d”) #Run dstat to get cpu stats for cpus 1, 3 and the total:dstat -C 0,3,total

Posted in Linux | Comments Off on Track cpu stats

The top/htop command(s)

To run top in batch mode (updating every 3 seconds) and write it to a file in my directorytop -b -d 10 -n 3 >> /home/<user>/top-file

Posted in Linux | Comments Off on The top/htop command(s)

Using the watch command

Watch disk usage updating every 3 seconds:watch -d -n 3 ‘df -h’

Posted in Linux | Comments Off on Using the watch command