Created
September 18, 2012 13:12
-
-
Save subosito/3743018 to your computer and use it in GitHub Desktop.
VPS Benchmarks
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
:~# dd if=/dev/zero of=test bs=64k count=16k conv=fdatasync | |
16384+0 records in | |
16384+0 records out | |
1073741824 bytes (1.1 GB) copied, 13.7857 s, 77.9 MB/s | |
:~# wget -O /dev/null http://cachefly.cachefly.net/100mb.test | |
--2012-09-18 13:09:12-- http://cachefly.cachefly.net/100mb.test | |
Resolving cachefly.cachefly.net (cachefly.cachefly.net)... 205.234.175.175 | |
Connecting to cachefly.cachefly.net (cachefly.cachefly.net)|205.234.175.175|:80... connected. | |
HTTP request sent, awaiting response... 200 OK | |
Length: 104857600 (100M) [application/octet-stream] | |
Saving to: `/dev/null' | |
100%[================================================================================>] 104,857,600 12.8M/s in 7.3s | |
2012-09-18 13:09:19 (13.7 MB/s) - `/dev/null' saved [104857600/104857600] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
:~$ dd if=/dev/zero of=test bs=64k count=16k conv=fdatasync | |
16384+0 records in | |
16384+0 records out | |
1073741824 bytes (1.1 GB) copied, 12.5803 s, 85.4 MB/s | |
:~$ wget -O /dev/null http://cachefly.cachefly.net/100mb.test | |
--2012-09-18 13:21:06-- http://cachefly.cachefly.net/100mb.test | |
Resolving cachefly.cachefly.net (cachefly.cachefly.net)... 205.234.175.175 | |
Connecting to cachefly.cachefly.net (cachefly.cachefly.net)|205.234.175.175|:80... connected. | |
HTTP request sent, awaiting response... 200 OK | |
Length: 104857600 (100M) [application/octet-stream] | |
Saving to: `/dev/null' | |
100%[================================================================================>] 104,857,600 29.7M/s in 3.4s | |
2012-09-18 13:21:09 (29.8 MB/s) - `/dev/null' saved [104857600/104857600] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
> dd if=/dev/zero of=test bs=64k count=16k conv=fdatasync | |
dm-1: write failed, user block limit reached. | |
dd: writing `test': Disk quota exceeded | |
13136+0 records in | |
13135+0 records out | |
860864512 bytes (861 MB) copied, 10.4346 s, 82.5 MB/s | |
> wget -O /dev/null http://cachefly.cachefly.net/100mb.test | |
--2012-09-18 09:18:13-- http://cachefly.cachefly.net/100mb.test | |
Resolving cachefly.cachefly.net... 205.234.175.175 | |
Connecting to cachefly.cachefly.net|205.234.175.175|:80... connected. | |
HTTP request sent, awaiting response... 200 OK | |
Length: 104857600 (100M) [application/octet-stream] | |
Saving to: “/dev/null” | |
100%[================================================================================>] 104,857,600 11.3M/s in 8.8s | |
2012-09-18 09:18:21 (11.3 MB/s) - “/dev/null” saved [104857600/104857600] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
:~# dd if=/dev/zero of=test bs=64k count=16k conv=fdatasync | |
16384+0 records in | |
16384+0 records out | |
1073741824 bytes (1.1 GB) copied, 4.04234 s, 266 MB/s | |
:~# wget -O /dev/null http://cachefly.cachefly.net/100mb.test | |
--2012-06-08 12:27:31-- http://cachefly.cachefly.net/100mb.test | |
Resolving cachefly.cachefly.net (cachefly.cachefly.net)... 205.234.175.175 | |
Connecting to cachefly.cachefly.net (cachefly.cachefly.net)|205.234.175.175|:80... connected. | |
HTTP request sent, awaiting response... 200 OK | |
Length: 104857600 (100M) [application/octet-stream] | |
Saving to: `/dev/null' | |
100%[======================================>] 104,857,600 32.7M/s in 3.1s | |
2012-06-08 12:27:34 (32.7 MB/s) - `/dev/null' saved [104857600/104857600] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment