I want to monitor system resources usage, the htop works very well, but I don't care processes now, is it possible to hide process list parts? Or, is there any other tool can do that?
Asked
Active
Viewed 587 times
1 Answers
1
I am not aware of a way to not show the processes in htop
, but if you go with a similar alternative like btop
or bpytop
you can turn off the showing of the processes by pressing 4 on the keyboard.
Examples:
BTOP: To install btop
it is sudo snap install btop
. Then to run it just btop
from a terminal window.
btop
with processes:
btop
without processes:
BPYTOP: To install bpytop
it is pip3 install bpytop
. Then to run it just bpytop
from a terminal window.
bpytop
with processes:
bpytop
without processes:
Hope this helps!

Terrance
- 41,612
- 7
- 124
- 183
htop
but maybe considerbtop
that is a snap app that allows you to turn off the process list from showing. – Terrance Aug 03 '22 at 04:35