So you just got the setup email for the impulsive purchase you just couldn't resist. What next?
____________________________________________________________________________________________
One of the simplest ways to test network and I/O speeds is with the FreeVPS.us benchmark script!
wget freevps.us/downloads/bench.sh -O - -o /dev/null|bash
For an extremely comprehensive benchmark, try ServerBear.com and their all-in-one performance test.
____________________________________________________________________________________________
Just want to know how fast those disks are spinning (or how fast the SSDs are, err, working)? Test the I/O with this!
dd if=/dev/zero of=test bs=64k count=16k conv=fdatasync; rm test
Let's check the disk I/O latency while we're at it...
wget https://ioping.googlecode.com/files/ioping-0.6.tar.gz
tar -xzvf ioping-0.6.tar.gz
cd ioping-0.6/
make ioping
...and the I/O seek rate...
...and the sequential I/O speed...
ioping -RL .
...and the cached I/O speed!
Want to simply know what the network speeds are like? Try downloading a test file from another server!
wget cachefly.cachefly.net/100mb.test
How about the processor that's being used?
cat /proc/cpuinfo
Make sure you've got every single KB of disk space your provider promised by using the command...
df
...or you could check the disk space in GB's if you'd prefer! (Note: Space reserved by the OS may not be listed!)
df -h
____________________________________________________________________________________________
This is not the place to post your benchmarks - go take a look at the reviews section of the forum and share your results there!
Did I miss anything? Something I should add? Let me know!
____________________________________________________________________________________________
One of the simplest ways to test network and I/O speeds is with the FreeVPS.us benchmark script!
wget freevps.us/downloads/bench.sh -O - -o /dev/null|bash
For an extremely comprehensive benchmark, try ServerBear.com and their all-in-one performance test.
____________________________________________________________________________________________
Just want to know how fast those disks are spinning (or how fast the SSDs are, err, working)? Test the I/O with this!
dd if=/dev/zero of=test bs=64k count=16k conv=fdatasync; rm test
Let's check the disk I/O latency while we're at it...
wget https://ioping.googlecode.com/files/ioping-0.6.tar.gz
tar -xzvf ioping-0.6.tar.gz
cd ioping-0.6/
make ioping
Code:
./ioping . -c 10
...and the I/O seek rate...
Code:
./ioping -RD .
ioping -RL .
...and the cached I/O speed!
Code:
?ioping -RC .
Want to simply know what the network speeds are like? Try downloading a test file from another server!
wget cachefly.cachefly.net/100mb.test
How about the processor that's being used?
cat /proc/cpuinfo
Make sure you've got every single KB of disk space your provider promised by using the command...
df
...or you could check the disk space in GB's if you'd prefer! (Note: Space reserved by the OS may not be listed!)
df -h
____________________________________________________________________________________________
This is not the place to post your benchmarks - go take a look at the reviews section of the forum and share your results there!
Did I miss anything? Something I should add? Let me know!
Last edited by a moderator: