> ## Documentation Index
> Fetch the complete documentation index at: https://docs.scheggia.cloud/llms.txt
> Use this file to discover all available pages before exploring further.

# Speedtest

Below is explained how to install [Speedtest® Ookla](https://speedtest.net) (the most reliable tool) to check your server's connection speed.

1. If not installed, download cURL on your server
   ```sh theme={null}
   apt install curl
   ```
2. Rimuovi eventuali tool precedenti
   ```sh theme={null}
   apt-get remove speedtest-cli
   ```
3. Download the Ookla Speedtest package
   ```sh theme={null}
   curl -s https://packagecloud.io/install/repositories/ookla/speedtest-cli/script.deb.sh | sudo bash
   ```
4. Finish the installation
   ```sh theme={null}
   apt install speedtest
   ```
5. Run a speed test
   ```sh theme={null}
   speedtest -s 3667
   ```
   <Info>
     Specifying `-s 3667` uses the **TIM SpA - Milan** server, which guarantees an accurate result since sometimes automatic selection uses distant and unreliable servers
   </Info>
