1.查看內存 free
2.查看cpu cat cpuinfo
3.查看磁盤 fdisk -l
4.查看帶寬 iptraf-ng
5.查看負載 top
6.查看請求數 netstat -anp | wc -l
7.查看請求詳情 netstat -anp
8.查看某個程序請求數 netstat -anp | grep php |wc -l
9.查看磁盤使用情況 df -h
10.查看系統日志 dmesg
11.查看進程數量 ps aux | wc -l
12.查看運行網絡程序 ps auxww | more
13.查看php運行程序 ps auxww | grep php
14.查看php運行程序數量 ps auxww | grep php | wc -l
15.查看init.d運行 ls -al /etc/init.d/
16.查找文件路徑 find / -name php.ini
17.查看mysql端口 netstat -anp | grep 3306
18.查看本機ip地址 ip add
19.查找某個字符串在文件中出現的 grep 127.0.0.1:9000 *.conf
20.
2.查看cpu cat cpuinfo
3.查看磁盤 fdisk -l
4.查看帶寬 iptraf-ng
5.查看負載 top
6.查看請求數 netstat -anp | wc -l
7.查看請求詳情 netstat -anp
8.查看某個程序請求數 netstat -anp | grep php |wc -l
9.查看磁盤使用情況 df -h
10.查看系統日志 dmesg
11.查看進程數量 ps aux | wc -l
12.查看運行網絡程序 ps auxww | more
13.查看php運行程序 ps auxww | grep php
14.查看php運行程序數量 ps auxww | grep php | wc -l
15.查看init.d運行 ls -al /etc/init.d/
16.查找文件路徑 find / -name php.ini
17.查看mysql端口 netstat -anp | grep 3306
18.查看本機ip地址 ip add
19.查找某個字符串在文件中出現的 grep 127.0.0.1:9000 *.conf
20.