![]() |
Post4VPS Benchmarking Script - Printable Version +- Post4VPS Forum | Free VPS Provider (https://post4vps.com) +-- Forum: VPS Discussion (https://post4vps.com/Forum-VPS-Discussion) +--- Forum: VPS Reviews (https://post4vps.com/Forum-VPS-Reviews) +--- Thread: Post4VPS Benchmarking Script (/Thread-Post4VPS-Benchmarking-Script) |
RE: Post4VPS Benchmarking Script - youstable - 01-14-2020 Does this script works with all Linux OS or supported with selected OS only? RE: Post4VPS Benchmarking Script - chanalku91 - 01-14-2020 (01-14-2020, 11:32 AM)youstable Wrote: Does this script works with all Linux OS or supported with selected OS only? I have tested this script on various Linux family OSes and there hasn't been an error yet! You can test it if you want! (。•̀ᴗ-)✧ RE: Post4VPS Benchmarking Script - Mashiro - 01-15-2020 (01-14-2020, 11:32 AM)youstable Wrote: Does this script works with all Linux OS or supported with selected OS only? You can be the one to find out if you are using a rather not so common Linux Distro. This script works on pretty much all common Linux Distributions such as: - Debian (and Distros based on it) - Ubuntu Server (and Distros based on it) - CentOS - Fedora Server - Redhat Enterprise Linux (same as Fedora/CentOS as they're based on RHEL) I even used this script on the developer console of Chromium OS and it worked there. This version of the script as far as I know doesn't need anything additional to be installed. So the chance is very high that it works on pretty much all Linux distributions if they're not very old. Report back so that OP can maybe fix it if it doesn't work for whatever reason. RE: Post4VPS Benchmarking Script - Sn1F3rt - 01-25-2020 @youstable Apologies for the late reply. It's exactly how @chanalku91 and @"Hidden Refuge" highlighted. It's a Benchmarking Script that's meant to work on almost all Linux platforms. I've tested this script on a variety of platforms. As HR highlighted this script is even working on the Chromium Developer console. To conclude, if you've any suggestions please feel free to post them here. As I'd said in the repo as well, this shall be the official support as well as suggestion thread for the script. I'm working out on a few improvements, however those are only locally available for me and I'm testing out before releasing a new version of the script with a free formatting fixes as well as some nice customizations regarding the CPU benchmarking. Regards, RE: Post4VPS Benchmarking Script - Mashiro - 02-29-2020 Hello there! I opened the first issue on your repo since I think that the issue feature on Github should be used much more to report issues on repos (after all it was made for that purpose). So here it is: https://github.com/sohamb03/bench-sh/issues/1 It's about a dead speed test mirror for IPv4 speed testing. RE: Post4VPS Benchmarking Script - Sn1F3rt - 03-02-2020 Thanks for reporting the issue @"Hidden Refuge". It gas accordingly been fixed and I've replaced the dead server with one of my own on my Atlanta VPS. In addition to this, I've also added a Sydney, AU speedtest server, so now we've two speedtests from the continent. :-) Regards, RE: Post4VPS Benchmarking Script - fChk - 06-03-2020 Code: (.............) 'free -m' gives its output in mebibytes (symbol: MiB) and not in megabytes (symbol: MB.) Code: # The unit MB is defined by the International System of Units (SI). RE: Post4VPS Benchmarking Script - Sn1F3rt - 06-03-2020 Thanks for pointing that out @fChk! I'll be fixing that soon when I'm on a PC, and will update that here. RE: Post4VPS Benchmarking Script - Sn1F3rt - 06-05-2020 In consideration of the issue highlighted by @fChk, the bench-sh script has been updated accordingly. Along, with that the dead Sydney speedtest mirror has been removed. However, we still have the Melbourne mirror under Australia. Besides, a few minor formatting fixes have been implemented. ![]() Kind Regards, RE: Post4VPS Benchmarking Script - fChk - 01-06-2021 @sohamb03 Code: iotest () { The bench.sh -io section of the script -shown above- assumes that all I/O rates are in MB/s which may be a valid general assumption but isn't always true, like in VirMach's VPS-9 @Buffalo : Code: # /............/bench.sh Any time there is a mixed speed units in the I/O tests, the Average speed will be WRONG!... as a consequence of that assumption. The fix is to introduce a conversion mechanism that can trap all GB/s units and convert them in MB/s, like HR's did in his own version of the script (see below), or something more general that systematically convert all units into Bytes then format the average result back again in the adhoc unit value (this later method is the one I use in my own disk I/O bench.) HR's version: Code: (.......same starting code here.........) In my script I'm using a dd_conv subroutine that take care of the conversions; it's used like this: Code: dd_conv() { My 'storageBufferedWrite' test which uses the subroutine above: Code: storageBufferedWrite(){ Feel free to use anyone that suits you most... |