This time, IÂ want to write some testing for LusoVPS Xen VPS, which comes with :
- 128MB Guaranteed Memory/256MB Swap
- 10 GB Storage
- 100 GB Monthy bandwidth
- XEN PV/SolusVM
- 1 IPv4/ 1 IPv6
- $2.7/month
Cpu Information :
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
# cat /proc/cpuinfo processor      : 0 vendor_id      : AuthenticAMD cpu family     : 16 model          : 8 model name     : AMD Opteron(tm) Processor 4174 HE stepping       : 1 cpu MHz        : 2300.170 cache size     : 512 KB fdiv_bug       : no hlt_bug        : no f00f_bug       : no coma_bug       : no fpu            : yes fpu_exception  : yes cpuid level    : 5 wp             : yes flags          : fpu tsc msr pae cx8 apic cmov pat clflush mmx fxsr sse sse2 ht nx mmxext fxsr_opt 3dnowext 3dnow constant_tsc nonstop_tsc pni popcnt cmp_legacy svm extapic cr8legacy abm sse4a misalignsse 3dnowprefetch ts ttp tm stc 100mhzsteps hwpstate [8] bogomips       : 5756.26 processor      : 1 vendor_id      : AuthenticAMD cpu family     : 16 model          : 8 model name     : AMD Opteron(tm) Processor 4174 HE stepping       : 1 cpu MHz        : 2300.170 cache size     : 512 KB fdiv_bug       : no hlt_bug        : no f00f_bug       : no coma_bug       : no fpu            : yes fpu_exception  : yes cpuid level    : 5 wp             : yes flags          : fpu tsc msr pae cx8 apic cmov pat clflush mmx fxsr sse sse2 ht nx mmxext fxsr_opt 3dnowext 3dnow constant_tsc up nonstop_tsc pni popcnt cmp_legacy svm extapic cr8legacy abm sse4a misalignsse 3dnowprefetch ts ttp tm stc 100mhzsteps hwpstate [8] bogomips       : 5756.26 |
IO Test :
1 2 3 4 |
 dd if=/dev/zero of=iotest bs=64k count=16k conv=fdatasync && rm -rf iotest 16384+0 records in 16384+0 records out 1073741824 bytes (1.1 GB) copied, 5.49856 seconds, 195 MB/s |
Network Test :
1 2 3 4 5 6 7 8 9 |
wget cachefly.cachefly.net/100mb.bin --2011-11-10 11:14:46-- http://cachefly.cachefly.net/100mb.bin 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: `100mb.bin' 100%[======================================>] 104,857,600 2.35M/s  in 44s 2011-11-10 11:15:30 (2.28 MB/s) - `100mb.bin' saved [104857600/104857600] |