diff --git a/README.md b/README.md index 886ba4b..9b46b77 100644 --- a/README.md +++ b/README.md @@ -2114,6 +2114,7 @@ top|grep sublime_text [unixbench](https://github.com/kdlucas/byte-unixbench) - the original BYTE UNIX benchmark suite, provide a basic indicator of the performance of a Unix-like system. [wrk](https://github.com/wg/wrk) - HTTP benchmark. + ##### Performance monitoring tool - sar ```bash # installation @@ -2416,6 +2417,15 @@ curl -I http://example.com/ # Vary: Accept-Encoding ``` +##### Perform network throughput tests +```bash +# server side: +$ sudo iperf -s -p 80 + +# client side: +iperf -c --parallel 2 -i 1 -t 2 -p 80 +``` + ## Data wrangling [[back to top](#handy-bash-one-liners)]