VM Load Generator
1.0 Overview
These could be used for stress testing your ESX Servers One is VBscript for Windows VM's and the other is Perl for *nix (Unix/Linux) VM's. Once you've started the .vbs one you can stop it by killing the wscript process under Windows Task Manager.
cpubusy.pl
#!/usr/bin/perl
$goal = 2181818;
while (TRUE) {
for ($i=0; $i<=$goal; $i++) {
$x = 0.000001;
$y = sin($x);
$y = $y + 0.00001;
}
next;
$y = $y + 0.01;
}
cpubusy.vbs
Dim goal
Dim before
Dim x
Dim y
Dim i
goal = 2181818Do While True
before = Timer
For i = 0 to goal
x = 0.000001
y = sin(x)
y = y + 0.00001
Next
y = y + 0.01
Loop
Spotlight:
VMware Documentation Downloader v11.08.30
Updated for vSphere 5 - A free tool for those on the move who need information FAST
vSphere 5 License Entitlement Changes
See what has changed in the license entitlement in vSphere 5?
Thin Client vs Zero Client
The differences between Thin and Zero desktop clients for VDI
