Linux-CentOS-Stream-9使用htop命令监控服务器

使用 htop -t 效果展示如下图

pp49tOO.png

htop 支持Linux发行版比较丰富,以RHEL9(EL9)CentOS Stream 9进行示例演示。

htop仓库地址https://github.com/htop-dev/htop

htop官网:https://htop.dev/downloads.html

epel:https://docs.fedoraproject.org/en-US/epel/

RHEL使用epel库,CentOS Stream 9

1
2
dnf config-manager --set-enabled crb
dnf install epel-release epel-next-release

wget获取epel:

1
wget https://dl.fedoraproject.org/pub/epel/epel-next-release-latest-9.noarch.rpm

epel依赖库安装

1
rpm -ivh epel-next-release-latest-9.noarch.rpm

htop安装

1
dnf -y install htop

htop 查看当前版本:

1
2
htop -V
htop 3.2.2

htop 运行

1
2
htop
htop -t

参数 -t :Tree,显示目录树结构。

htop 帮助文档:

1
2
htop -h 
htop --help