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  
上一篇:利用pandas计算一月至今的所有月份(欢迎其他方法,未有时间找到答案)


下一篇:输入某年某月某日,判断这一天是这一年的第几天?JAVA基础题