This question complements Linux "top" command: What are us, sy, ni, id, wa, hi, si and st (for CPU usage)?.
In Ubuntu Xenial the top
gives e.g.:
%CPU(s): 0,6 be, 0,1 sy, 1,5 ni, 97,6 un, 0,1 wa, 0,0 hi, 0,0 si, 0,0 st
The man-pages don't explain be
and un
. I guess un
must be the well-known us
("un-niced user processes") and be
the former id
("idle operations"), although the percentages make it likely to be the other way round.
top
using? – Stephen Kitt May 22 '20 at 09:16