這里說下需求
- 查看進程
其實我就會一個
```shell
ps aux
```
然后用grep來過濾(查看httpd)
```shell
ps aux | grep httpd
```
- 查看端口
其實我也只會一個命令
```shell
netsta -apn
```
也是用grep來過濾(查看80端口)
```
netstat -apn | grep 80
```
- 資源管理器
```shell
dstat
```
?