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.

Ravi Saive
I am an experienced GNU/Linux expert and a full-stack software developer with over a decade in the field of Linux and Open Source technologies

Each tutorial at TecMint is created by a team of experienced Linux system administrators so that it meets our high-quality standards.

Join the TecMint Weekly Newsletter (More Than 156,129 Linux Enthusiasts Have Subscribed)
Was this article helpful? Please add a comment or buy me a coffee to show your appreciation.

2 Comments

Leave a Reply
  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

Leave a Reply to ted Cancel reply

Thank you for taking the time to share your thoughts with us. We appreciate your decision to leave a comment and value your contribution to the discussion. It's important to note that we moderate all comments in accordance with our comment policy to ensure a respectful and constructive conversation.

Rest assured that your email address will remain private and will not be published or shared with anyone. We prioritize the privacy and security of our users.