htop 使用介绍
前言
top 作为日常管理工作中最常用也是最重要的 Linux 系统监控工具之一,可以动态观察系统进程状况。但其缺点就是只支持键盘操作,显示也单调。现在我们有了一个更好的选择那就是 htop。
推荐使用 htop 代替 top
更新历史
2018 年 08 月 18 日 - 初稿
阅读原文 - https://liaojiaxin158.github.io/post/htop/
扩展阅读
htop - http://hisham.hm/htop/
htop 简介
htop - an interactive process viewer for Unix
This is htop, an interactive process viewer for Unix systems. It is a text-mode application (for console or X terminals) and requires ncurses.
htop is an interactive text-mode process viewer for Unix systems. It aims to be a better ‘top’.
Comparison between htop
and classic top
- In
htop
you can scroll the list vertically and horizontally to see all processes and full command lines. - In
top
you are subject to a delay for each unassignedb key you press (especially annoying when multi-key escape sequences are triggered by accident). htop
starts faster (top
seems to collect data for a while before displaying anything).- In
htop
you don’t need to type the process number to kill a process, intop
you do. - In
htop
you don’t need to type the process number or the priority value to renice a process, intop
you do. - In
htop
you can kill multiple processes at once. top
is older, hence, more tested.
htop 命令 是 Linux 系统中的一个互动的进程查看器,一个文本模式的应用程序(在控制台或者 X 终端中),需要 ncurses。
与 Linux 传统的 top 相比,htop 更加人性化。它可让用户交互式操作,支持颜色主题,可横向或纵向滚动浏览进程列表,并支持鼠标操作。
与 top 相比,htop 有以下优点:
- 可以横向或纵向滚动浏览进程列表,以便看到所有的进程和完整的命令行
- 在启动上,比 top 更快
- 杀进程时不需要输入进程号
- htop 支持鼠标操作
- 两者相比起来,top 比较繁琐
top 缺点:
- 只支持键盘操作
- 显示也单调
htop 安装
htop 目前已经支持非常多的平台,常用的安装方式如下
http://hisham.hm/htop/index.php?page=downloads
1 | # Centos/RHEL |
htop 常用功能
1 | # 语法 |
htop 使用
鼠标点击 Setup 或者按下 F2 之后进入 htop 设定的页面
- Meters
设定顶端的 显示信息,分为左右两侧,Left column 表示左侧的显示的信息,Right column 表示右侧显示的信息,如果要新加选项,可以选择 Available meters 添加,F5 新增到上方左侧,F6 新增到上方右侧。Left column 和 Right column 下面的选项,可以选定信息的显示方式,有 LED、Bar(进度条)、Text(文本模式),可以根据个人喜好进行设置
- Display options
选择要显示的内容,按空格 x 表示显示,选择完后,按 F10 保存
- Colors
设定界面以什么颜色来显示,个人认为用处不大,各人喜好不同
- Colums
作用是增加或取消要显示的各项内容,选择后 F7(向上移动)、F8(向下移动)、F9(取消显示、F10(保存更改))此处增加了 PPID、PGRP,根据各人需求,显示那些信息。
F3 搜索进程
在界面下按 F3 或直接输入”/”就可以直接进入搜索模式,是按照进程名进行搜索的,搜索到的进程会用设定的颜色标记出来,方便查看。
F4:过滤器
相当于模糊查找,不区分大小写,下方输入要搜索的内容后,则界面只显示搜索到的内容,更加方便查看
F5: 以树形方式显示
F6:排序方式
按下 F6 后会跳转至以树形方式显示界面,让您选择以什么方式进行排序,在 Sort by 下选择您要以什么来排序
F7,F8:调整进程 nice 值
F7 表示减小 nice 值(增大优先级),F8 增大 nice 值(减小优先级),选择某一进程,按 F7 或 F8 来增大或减小 nice 值,nice 值范围为 - 20-19
F9:杀死进程
选择某一进程按 F9 即可杀死此进程,很方便
F10: 退出 htop
更多图文详细教程可以参考以下链接
htop 使用详解 – 史上最强(没有之一)
https://cloud.tencent.com/developer/article/1115041
Linux htop 命令使用详解
https://www.linuxidc.com/Linux/2018-03/151428.htm
Install HTop on Ubuntu
https://linuxhint.com/install-htop-ubuntu/