- 查看当前所有进程
ps -aux
- 查看内存占用
free -m
free -h
- python运行log(-u 为实时写入)
nohup python3 -u main.py >test.log 2>&1 &
linux 进程命令
最新推荐文章于 2025-06-22 23:59:12 发布
ps -aux
free -m
free -h
nohup python3 -u main.py >test.log 2>&1 &