这里说下需求
- 查看进程
其实我就会一个
```shell
ps aux
```
然后用grep来过滤(查看httpd)
```shell
ps aux | grep httpd
```
- 查看端口
其实我也只会一个命令
```shell
netsta -apn
```
也是用grep来过滤(查看80端口)
```
netstat -apn | grep 80
```
- 资源管理器
```shell
dstat
```