Posted On January 28, 2021

Linux: Check CPU Utilization

kimconnect 0 comments
blog.KimConnect.com >> Linux >> Linux: Check CPU Utilization

There are many utilities that would provide this information. The easiest one that is available in all major Linux distribution would the use of ‘top’ command. Here’s a sample output of: top -i (the -i argument tells top to hide all idle processes)

Sample output of the ‘top’ command

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

Bash Shell: Rename Files – Prepend and Append

Pre-pending # Prepend any file that doesn't have the word "/thumbs_" in its full path…

NGINX

# Create nginx.repovim /etc/yum.repos.d/nginx.repo#### content ####[nginx]name=nginx repo baseurl=http://nginx.org/packages/mainline/centos/$releasever/$basearch/ gpgcheck=0 enabled=1###############sudo yum update nginxsudo service nginx…

Bash: How To Join Array With Comma Delimiter

# The following function joins an array of numbers # Limitation: the delimiter is expected…