Created
March 6, 2021 19:41
-
-
Save kat47/825cca4cb2b5b89020fbf56d22cb1fc8 to your computer and use it in GitHub Desktop.
Script to install speedtest CLI - https://www.speedtest.net/apps/cli
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
sudo apt-get install gnupg1 apt-transport-https dirmngr | |
export INSTALL_KEY=379CE192D401AB61 | |
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys $INSTALL_KEY | |
echo "deb https://ookla.bintray.com/debian generic main" | sudo tee /etc/apt/sources.list.d/speedtest.list | |
sudo apt-get update | |
sudo apt-get install speedtest |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
How to use the script
Match the script from the official source -> Speedtest CLI -> Ubuntu/Debian
Make the script executable
chmod +x installspeedtestcli.sh
Run the script
sudo ./installspeedtestcli.sh