[原]消耗CPU資源的shell指令碼

來源:互聯網
上載者:User

使用死迴圈消耗CPU資源,如果伺服器是有多顆CPU,可以選擇消耗多少顆CPU的資源:

#! /bin/sh # filename killcpu.shif [ $# != 1 ] ; then  echo "USAGE: $0 <CPUs>"  exit 1;fifor i in `seq $1`do  echo -ne " i=0; while true do i=i+1; done" | /bin/sh &  pid_array[$i]=$! ;donefor i in "${pid_array[@]}"; do  echo 'kill ' $i ';';done

使用方法很簡單,參數3表示消耗3顆CPU的資源,運行後,會有一堆 kill 命令,方便 kill 進程:

[root@test02 ~]# ./killcpu.sh 3kill  30104 ;kill  30106 ;kill  30108 ;[root@test02 ~]# top top - 15:27:31 up 264 days, 23:39,  4 users,  load average: 0.86, 0.25, 0.19Tasks: 185 total,   5 running, 180 sleeping,   0 stopped,   0 zombieCpu0  : 100.0% us,  0.0% sy,  0.0% ni,  0.0% id,  0.0% wa,  0.0% hi,  0.0% siCpu1  :  0.0% us,  0.0% sy,  0.0% ni, 100.0% id,  0.0% wa,  0.0% hi,  0.0% siCpu2  : 100.0% us,  0.0% sy,  0.0% ni,  0.0% id,  0.0% wa,  0.0% hi,  0.0% siCpu3  : 100.0% us,  0.0% sy,  0.0% ni,  0.0% id,  0.0% wa,  0.0% hi,  0.0% siMem:   8165004k total,  8095880k used,    69124k free,    53672k buffersSwap:  2031608k total,   103548k used,  1928060k free,  6801364k cached
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.