LInux性能基本指令复习一

查看cpu信息:

cat /proc/cpuinfo 查看CPU的信息

 

linux服务器负载测试:

{ yes > /dev/null & } && sleep 60 && ps -ef|grep yes|awk‘{print$2}‘|xargs kill

LInux性能基本指令复习一

 

for i in $(seq 0 $(($(cat /proc/cpuinfo | grep processor | wc -l)-1)));do taskset -c $i yes > /dev/null & done && sleep 30 && ps -ef|grep yes | awk ‘{print $2} ‘|xargs kill

LInux性能基本指令复习一

 

 指定某个接口进程:top -p 接口ID -d 1 -n 2,没隔1秒刷新2次

 

内存监控:free -h

LInux性能基本指令复习一

 

 

LInux性能基本指令复习一

 

工具安装:

LInux性能基本指令复习一

 

 硬盘Io

LInux性能基本指令复习一

 

iostat 5 没秒执行1次

 

LInux性能基本指令复习一

 

LInux性能基本指令复习一

上一篇:微信消息处理


下一篇:linux服务器开放端口号(6379)