Archives
- October 2024
- August 2024
- June 2024
- May 2024
- February 2024
- December 2023
- October 2023
- June 2023
- April 2023
- August 2016
- June 2016
- May 2016
- February 2016
- December 2015
- October 2015
- May 2015
- April 2015
- January 2015
- December 2014
- November 2014
- October 2014
- January 2014
- December 2013
- November 2013
- October 2013
- August 2013
- July 2013
- May 2013
- April 2013
- March 2013
- February 2013
- January 2013
- December 2012
- November 2012
- October 2012
- September 2012
- August 2012
- July 2012
- June 2012
- April 2012
Categories
Meta
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)
top and htop are free CLI process viewers. They list the top resource using processes being run.The information includes: top options:–a : Sort by memory usage This switch makes top to sort the processes by allocated memory–d : Delay time update interval as: -d ss.tt (seconds.tenths)–p : Monitor PIDs as: -pN1 … Continue reading
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