企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持知识库和私有化部署方案 广告
这里说下需求 - 查看进程 其实我就会一个 ```shell ps aux ``` 然后用grep来过滤(查看httpd) ```shell ps aux | grep httpd ``` - 查看端口 其实我也只会一个命令 ```shell netsta -apn ``` 也是用grep来过滤(查看80端口) ``` netstat -apn | grep 80 ``` - 资源管理器 ```shell dstat ``` ​