多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
这里说下需求 - 查看进程 其实我就会一个 ```shell ps aux ``` 然后用grep来过滤(查看httpd) ```shell ps aux | grep httpd ``` - 查看端口 其实我也只会一个命令 ```shell netsta -apn ``` 也是用grep来过滤(查看80端口) ``` netstat -apn | grep 80 ``` - 资源管理器 ```shell dstat ``` ​