linux进程相关命令总结

ps

列出进程

常用形式

ps aux

 

kill

杀死进程

常用形式

kill [pid]

kill -[signal] [pid]

 

pgrep

按名称列出进程id

常用形式

pgrep -l xxx

 

pkill

按名称杀死进程

 

pwdx

显示进程工作目录

常用形式

pwdx [pid]

相似功能

ls -l /proc/pid/cwd

 

显示程序可执行文件路径

ls -l /proc/pid/exe

 

lsof

显示程序打开的文件句柄

可用于查看程序打开的端口等

lsof -i -p [pid]

 

top

动态查看进程资源占用情况

 

你可能感兴趣的:(工作,linux,kill,Signal)