欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  科技

stress性能测试模拟CPU使用100%详解

程序员文章站 2022-03-09 19:26:08
(1)安装stress解压:tar -xzvf stress-1.0.4.tar.gz./configuremakemake install默认安装在/usr/local/bin目录下:(2)使用st...

(1)安装stress

解压:tar -xzvf stress-1.0.4.tar.gz

stress性能测试模拟CPU使用100%详解

./configure

stress性能测试模拟CPU使用100%详解

make

stress性能测试模拟CPU使用100%详解

make install

stress性能测试模拟CPU使用100%详解

默认安装在/usr/local/bin目录下:

stress性能测试模拟CPU使用100%详解

(2)使用stress模拟cpu使用100%

先使用top看下cpu使用情况,基本空闲。

stress性能测试模拟CPU使用100%详解

使用stress模拟cpu使用100%:stress -c 8 -t 100

stress性能测试模拟CPU使用100%详解

再次使用top查看cpu使用情况,可以看到us使用100%了。

stress性能测试模拟CPU使用100%详解

vmstat查看运行前后数据:

模拟前:

stress性能测试模拟CPU使用100%详解

模拟后:

stress性能测试模拟CPU使用100%详解

可以看到us cpu 使用率很高,cpu 队列也从0变为了8,in 值变大很多,不过 cs 倒是小了很多。这说明我们并没有模拟出 cpu 争用的情况,只是消耗了 cpu 而已。

以上就是stress性能测试模拟cpu使用100%示例详解的详细内容,更多关于stress性能测试模拟cpu使用100%的资料请关注其它相关文章!