Answers:
您所看到的完全正常。如果您想更轻松地查看眼睛(仍然显示正确的信息),可以在HTOP中执行以下步骤:
默认情况下,您所看到的是所报告的所有内核和用户态线程的表示。通过执行上述步骤,您将不会显示这些线程,并且可以更清晰地查看系统上正在运行的进程。
如果您愿意,这是我〜/ .config / htop / htoprc文件中的内容:
# Beware! This file is rewritten by htop when settings are changed in the interface.
# The parser is also very primitive, and not human-friendly.
fields=0 48 17 18 38 39 40 2 46 47 49 1
sort_key=46
sort_direction=1
hide_threads=0
hide_kernel_threads=1
hide_userland_threads=1
shadow_other_users=1
show_thread_names=1
highlight_base_name=1
highlight_megabytes=1
highlight_threads=1
tree_view=1
header_margin=1
detailed_cpu_time=1
cpu_count_from_zero=0
update_process_names=1
color_scheme=0
delay=15
left_meters=LeftCPUs Memory Swap
left_meter_modes=1 1 1
right_meters=RightCPUs Tasks LoadAverage Uptime
right_meter_modes=1 2 2 2
~/.config/htop/htoprc
文件才能使设置在启动过程中保持不变htop
。换句话说,只要按照编号的步骤没有工作,我不得不改变hide_userland_threads=0
到hide_userland_threads=1
手动。