Fast – Test Your Internet Download Speed from Linux Terminal

If your internet download speed seems poor, you most likely go to Speedtest.net and check, yes?. This is the easiest way to test the speeds that we’re getting from our internet service provider, and it’s been a most liked choice for years.

But Netflix’s own speed testing service – Fast.com, a free, fast, and simple tool that allows users to check their current Internet download and upload speed with latency in its excellent clean, ad-free interface. Since it uses Netflix’s own servers to test, so you can easily track if your ISP is throttling your speed.

[ You might also like: 16 Useful Bandwidth Monitoring Tools to Analyze Network Usage in Linux ]

Just head over to Fast.com to do a speed test of your current internet download speed.

Test Internet Download Speed
Test Internet Download Speed

Fast – Testing Internet Download Speed From Linux Terminal

If you want to check the current internet speed of your Linux server from the command-line, you can use a utility called fast – a minimal zero-dependency script, written in Go language for testing your internet download speed from the terminal, which is powered by Fast.com – Netflix and runs on Linux, Windows, and Mac.

This speed testing tool is very simple and has no options whatsoever. Simply, download a binary file for your architecture (fast_linux_amd64 for 64bit systems) in your home directory using curl or wget, set execute permission and run it directly from the terminal to test your server Internet speed.

$ curl -L https://github.com/ddo/fast/releases/download/v0.0.4/fast_linux_amd64 -o fast
OR
$ wget https://github.com/ddo/fast/releases/download/v0.0.4/fast_linux_amd64 -O fast

# then chmod
chmod +x fast

# run
./fast
Linux Server Internet Speed Test
Linux Server Internet Speed Test

If you want, you can install it under /usr/local/bin directory on any Linux distribution by using the following commands.

$ wget https://github.com/ddo/fast/releases/download/v0.0.4/fast_linux_amd64 
$ sudo install fast_linux_amd64 /usr/local/bin/fast
$ fast
Install Fast.com Tool in Linux
Install Fast.com Tool in Linux

You can also install Fast on any Linux distribution using snap (requires snapd to be installed on the system).

$ snap install fast

That’s all! In this article, we have explained how to check the current Internet download and upload speed of Linux systems using the Fast.com speed testing service.

Tutorial Feedback...
Was this article helpful? If you don't find this article helpful or found some outdated info, issue or a typo, do post your valuable feedback or suggestions in the comments to help improve this article...

If You Appreciate What We Do Here On TecMint, You Should Consider:

TecMint is the fastest growing and most trusted community site for any kind of Linux Articles, Guides and Books on the web. Millions of people visit TecMint! to search or browse the thousands of published articles available FREELY to all.

If you like what you are reading, please consider buying us a coffee ( or 2 ) as a token of appreciation.

Support Us

We are thankful for your never ending support.

2 thoughts on “Fast – Test Your Internet Download Speed from Linux Terminal”

  1. This tool (fast) shows only download speed only. Is there any way to fetch the upload speed as well?

    speedtest-cli shows both speeds.

    Reply

Got something to say? Join the discussion.

Have a question or suggestion? Please leave a comment to start the discussion. Please keep in mind that all comments are moderated and your email address will NOT be published.