linux下模拟CPU占用100%小程序

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux下模拟CPU占用100%小程序相关的知识,希望对你有一定的参考价值。

在做一个测试时,需要模拟服务器CPU占用满的情况,在查阅相关资料后,发现网上程序不太好用,

原文在这:http://www.2cto.com/os/201304/202068.html

优化后如下:

#! /bin/sh 
# filename killcpu.sh
if [ $# -ne 1 ] ; then
  echo "USAGE: $0 <CPUs>|stop"
  exit 1;
fi

stop()
{
 while read LINE
  do
    kill -9 $LINE
    echo "kill $LINE sucessfull"
  done < pid.txt
 cat /dev/null > pid.txt
}

start()
{
  echo "u want to cpus is: "$1
  for i in `seq $1`
do
  echo -ne " 
i=0; 
while true
do
i=i+1; 
done" | /bin/sh &
  pid_array[$i]=$! ;
done

for i in "${pid_array[@]}"; do
  echo pid is:  $i ;;
  echo $i >> pid.txt
done
}

case $1 in
   stop)
    stop
  ;;
   *)
   start $1
;;
esac

运行方式:

启动:./killcpu.sh 1

停止:killcpu.sh stop

以上是关于linux下模拟CPU占用100%小程序的主要内容,如果未能解决你的问题,请参考以下文章

linux模拟cpu占用100%脚本

一个C++工程CPU占用100%问题的排查

一个C++工程CPU占用100%问题的排查

SpringBoot 模拟将CPU打满100%

linux 系统下oracle 10G perl进程cpu占用100% ,这个进程有啥用?能关掉吗?会不会有啥影响?

linux cpu占用100%排查