Solaris Loadgenerator: Difference between revisions

From Lolly's Wiki
Jump to navigationJump to search
No edit summary
No edit summary
Line 1: Line 1:
[[Kategorie:Solaris]]
[[Kategorie:Solaris Loadgenerator]]
This is a little script to generate load. It uses gzip and bzip2 to generate load fetched from void and compressed into the void again :-).
This is a little script to generate load. It uses gzip and bzip2 to generate load fetched from void and compressed into the void again :-).



Revision as of 17:14, 4 June 2015

Kategorie:Solaris Loadgenerator This is a little script to generate load. It uses gzip and bzip2 to generate load fetched from void and compressed into the void again :-).

Call it with <scriptname> <number> to generate a load of <number>.

#!/usr/bin/bash

count=$1

for((i=1;i<=${count};i++))
do
  cat /dev/urandom | bzip2 | gzip -9 >/dev/null &
done