search和filter的区别:search会将光标定位到符合条件的进程上,通过F3键进行逐个查找;而filter会直接将符合条件的进程筛选出来。search和filter都使用ESC键来取消功能。 显示树形结构:输入"t"或按下F5,显示树形结构,意思跟pstree 差不多,能看到所有程序树状执行的结构,这对于系统管理来说相当方便,理清程序是如何产生的,...
search和filter的区别:search会将光标定位到符合条件的进程上,通过F3键进行逐个查找;而filter会直接将符合条件的进程筛选出来。search和filter都使用ESC键来取消功能。 显示树形结构:输入"t"或按下F5,显示树形结构,意思跟pstree 差不多,能看到所有程序树状执行的结构,这对于系统管理来说相当方便,理清程序是如何产生的,...
F4 Filter:过滤进程列表 F5 Tree:以树状结构显示进程 F6 SortBy:选择排序方式 F7 Nice -:降低进程的 nice 值(优先级) F8 Nice +:提高进程的 nice 值 F9 Kill:杀死进程 F10 Quit:退出htop 右上角, Tasks:系统中的总任务数,也就是进程数 Load average:系统在过去 1 分钟、5 分钟和 15 分钟的平均负载 U...
-F, --filter=FILTER:通过固定字符串过滤进程,字符串不会视作正则表达式,且不区分大小写,多个字符串用|隔开。 -h, --help:打印帮助信息。 -p, --pid=PID,PID...:仅显示指定的PID进程信息,可指定多个,使用逗号,隔开。 -s --sort-key COLUMN:通过字段排序。 ...
F3 Search搜索进程,F4 Filter过滤进程列表,F5 Tree以树状结构显示进程,F6 SortBy选择排序方式,F7 Nice -降低进程的nice值(优先级),F8 Nice +提高进程的nice值,F9 Kill杀死进程,F10 Quit退出htop。右上角显示Tasks、Load average和Uptime。Tasks显示系统中的总任务数,也就是进程数。Load average...
Increase Search and Filter max string length to 128 2年前 InfoScreen.c Fix code style 1年前 InfoScreen.h Add missing copyright/file headers 2年前 ListItem.c Introduce screen tabs 4年前 ListItem.h Update includes based on IWYU 1年前 LoadAverageMeter.c Explicitly specify...
keys['u'] = actionFilterByUser; keys['w'] = actionShowCommandScreen; keys['x'] = actionShowLocks; keys[KEY_F(1)] = actionHelp; keys[KEY_F(2)] = actionSetup; keys[KEY_F(3)] = actionIncSearch; keys[KEY_F(4)] = actionIncFilter; keys[KEY_F(5)] = actionToggleTree...
USER:该命令是由哪个用户产生的。 PID:进程的ID号。 %CPU:该进程占用CPU资源的百分比。 %MEM:该进城占用物理内存的百分比。 VSZ:该进程占用虚拟内存的大小,单位KB。 RSS:该进程占用实际物理内存的大小,单位KB。 TTY:该进程在哪个终端中运行。其中tty1-tty7代表本地控制台终端,tty1-tty6是本地字符界面终端,tty...
F4, \ Incremental process filtering: type in part of a process command line and only processes whose names match will be shown. To cancel filtering, enter the Filter option again and press Esc. F5, t Tree view: organize processes by parenthood, and layout the relations between them as a ...
static Htop_Reaction actionFilterByUser(State* st) { Panel* usersPanel = Panel_new(0, 0, 0, 0, true, Class(ListItem), FunctionBar_newEnterEsc("Show ", "Cancel ")); Panel_setHeader(usersPanel, "Show processes of:"); UsersTable_foreach(st->ut, addUserToVector, usersPanel);...