see cpu usage linux code example

Example 1: list cpu linux command

#hows CPU Architecture Info
$ lscpu

Example 2: linux cpu infos

# >>"lscpu"<< shows general information about your CPU:
#	- name
# 	- frequency
# 	- architecture
# 	- etc.

lscpu

# If you were looking for the current CPU usage, try >>"top"<<

Example 3: linux check cpu usage

lscpu

# Or
cat /proc/cpuinfo

Example 4: get current cpu utilization in percentage linux

awk '{u=$2+$4; t=$2+$4+$5; if (NR==1){u1=u; t1=t;} else print ($2+$4-u1) * 100 / (t-t1) "%"; }' \
<(grep 'cpu ' /proc/stat) <(sleep 1;grep 'cpu ' /proc/stat)

Tags:

Html Example