If you are connected to a broadband network and are wondering how fast your Internet connection really is, here is a way to test your Internet connection speed with a simple command.\\

In Linux, open a terminal and type the following:\\

<code>
wget -O /dev/null http://speedtest.wdc01.softlayer.com/downloads/test10.zip
</code>

What this command does is to download a 10M file to your computer. However, since you are pointing the destination folder to “/dev/null”, no actual file are being saved to your computer. The file are discarded on arrival.\\

In the terminal, you will be able to see the speed of the download, which is equivalent to your Internet connection speed.\\

From [[http://www.maketecheasier.com/quick-tips/test-internet-connection-speed-from-terminal|Making Tech Easier]]