+2 votes
in Operating Systems by (71.8k points)
I need a benchmarking script to view system information, and test the network and disk I/O speed of a VPS?

1 Answer

+2 votes
by (351k points)
selected by
 
Best answer

There are many scripts for benchmarking. Check the list here.
Type the following command on the command line to view system information, and test the network and disk I/O speed of your VPS.

wget -qO- bench.sh | bash

Your output should look like this:

----------------------------------------------------------------------
CPU model            : Intel(R) Xeon(R) CPU E5-2690 v2 @ 3.00GHz
Number of cores      : 2
CPU frequency        : 3000.030 MHz
Total size of Disk   : 37.0 GB (11.0 GB Used)
Total amount of Mem  : 2845 MB (568 MB Used)
Total amount of Swap : 3071 MB (0 MB Used)
System uptime        : 7 days, 4 hour 6 min
Load average         : 0.00, 0.01, 0.05
OS                   : CentOS 7.7.1908
Arch                 : x86_64 (64 Bit)
Kernel               : 3.10.0-1062.1.1.el7.x86_64
----------------------------------------------------------------------
I/O speed(1st run)   : 72.5 MB/s
I/O speed(2nd run)   : 115 MB/s
I/O speed(3rd run)   : 194 MB/s
Average I/O speed    : 127.2 MB/s
----------------------------------------------------------------------
Node Name                       IPv4 address            Download Speed
CacheFly                        205.234.175.175         147MB/s      
Linode, Tokyo2, JP              139.162.65.37           13.6MB/s     
Linode, Singapore, SG           139.162.23.4            9.75MB/s     
Linode, London, UK              176.58.107.39           26.5MB/s     
Linode, Frankfurt, DE           139.162.130.8           21.1MB/s     
Linode, Fremont, CA             50.116.14.9             25.7MB/s     
Softlayer, Dallas, TX           173.192.68.18           32.9MB/s     
Softlayer, Seattle, WA          67.228.112.250          18.8MB/s     
Softlayer, Frankfurt, DE        159.122.69.4            8.71MB/s     
Softlayer, Singapore, SG        119.81.28.170           7.03MB/s     
Softlayer, HongKong, CN         119.81.130.170          7.27MB/s     
----------------------------------------------------------------------

by (351k points)
edited by
You can also use one of the following commands:

1. curl -LsO bench.monster/speedtest.sh; bash speedtest.sh
2. curl -sL yabs.sh | bash
3. wget -qO- https://serverben.ch/bench-monster.sh | bash
4. wget -qO- https://serverben.ch/bench.sh | bash
5. wget -qO- https://serverben.ch/yabs.sh | bash

Geekbench v5 single-core score > 950 should be good.

Related questions

+4 votes
1 answer
+4 votes
1 answer
asked Nov 16, 2021 in Operating Systems by kush (40.5k points)
+3 votes
1 answer
+2 votes
1 answer
+3 votes
1 answer

...