Linux工具

2018-12-14  本文已影响0人  byamao1

Htop

htop与top是一样的用法,可以这样显示指定进程:

top -H -p2023
说明: -H 指显示线程,-p 是指定进程
https://my.oschina.net/shipley/blog/520062

截图.png

htop可以显示线程

K 显示/隐藏内核线程
Task:kthr就会显示多少个内核线程
H 显示/隐藏用户线程
Task:thr就会显示多少个用户线程
https://www.cnblogs.com/mchina/archive/2013/03/15/2858041.html

htop会把一个进程里的线程当做一个进程来显示出来,进程有多个线程,htop就显示了多个进程(同进程名不同PID)。如果不希望显示线程:

按F2
选择 Display options
选择 Hide userland threads

http://www.cppblog.com/aurain/archive/2014/11/20/208928.html

搜索进程:F3
过滤进程:F4
Tree:看到程序树状执行的结构

whereis

whereis命令用于查找文件。
该指令只能用于查找二进制文件、源代码文件和man手册页,一般文件的定位需使用locate命令。
http://www.runoob.com/linux/linux-comm-whereis.html

lsof

lsof的英文是list open files。可以用来查看端口被占用情况,

tar

压缩
tar -cf test.tar [目标文件夹/文件]
解压缩
tar -xf test.tar

-z为通过gzip指令处理.gz格式
-v为显示处理过程
http://www.runoob.com/linux/linux-comm-tar.html

find

find /home -name "*.txt"
http://man.linuxde.net/find

上一篇 下一篇

猜你喜欢

热点阅读