How to install iperf2 tool in Ubuntu 18.04.1? without Internet connection.
Asked
Active
Viewed 4,443 times
1 Answers
1
You can install it by downloading all required *.deb
files listed in its website:
Choose the version you want and download it with its dependencies. After you have downloaded all those files, you can install them without requiring any Internet connection by using:
sudo dpkg -i libsctp1_1.0.18+dfsg-1_amd64.deb
sudo dpkg -i libiperf0_3.9-1_amd64.deb
sudo dpkg -i iperf3_3.9-1_amd64.deb
This example shows how to install IPerf 3.9 for Ubuntu 64-bits.

galoget
- 2,963
-
I installed iperf using sudo apt install iperf – hongmeix Jul 09 '21 at 07:00
-
@hongmeix You asked "without internet connection". Apt requires internet connection... – Lorenz Keel Jul 09 '21 at 07:18
-
In your question you said that you did not have Internet connection. – galoget Jul 09 '21 at 07:18
-
1Oh, yes, indeed, without internet connection, your method is workable. Thanks a lot. – hongmeix Jul 09 '21 at 07:58
-
Glad to know that, you're welcome! =) – galoget Jul 09 '21 at 08:00