Wednesday 5 February 2020

What units does wget use for bandwidth?


When downloading, wget reports speed in "K/s". K...what? kilobits? kilobytes? 1024 or 1000?




Update:


wget -O /dev/null http://newark1.linode.com/100MB-newark.bin

produces "348 K/s". Meanwhile:



  • nethogs says "343 KB/sec" for the entire Wi-Fi connection

  • System Monitor says 364 "KiB/s" for the entire Wi-Fi connection

  • Tomato says "3010.44 kbit/s (367.48 KB/s)" for the Wi-Fi connection (which is consistent with decimal kilobits and binary kilobytes).


So we know it's kilobytes, and probably perverse kilobytes, since the number would be bigger for decimal kilobytes.



Answer



I would guess K stands for kilobytes.


In the GNU Wget 1.12 Manual, K always stands for kilobytes.


No comments:

Post a Comment

How can I VLOOKUP in multiple Excel documents?

I am trying to VLOOKUP reference data with around 400 seperate Excel files. Is it possible to do this in a quick way rather than doing it m...