linux 进程管理

2021/9/18 7:04:59

本文主要是介绍linux 进程管理,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

 

No. 任务 命令 备注
1 查看端口 netstat -nap | grep "8888"   
2 杀死进程 kill -9 pid(进程id)  
3 后台启动进程 nohub  
4 查看进程 ps -ef | grep process_name  
5 定时启动任务 crontab 
* * * * * cmd
min hour day of month month of year day of week command
0-59 0-23 1-31 1-12 0-7, 0/7 are sunday shell
 
6 根据pid查看进程目录 pwdx pid

pwd 当前工作目录

7 查看进程pid内存占有 cat /proc/pid/status  


这篇关于linux 进程管理的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程