linux 进程管理

时间:2021-09-21 23:16:14   收藏:0   阅读:26

 

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  

原文:https://www.cnblogs.com/luckyls/p/15306700.html

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!