How To Install tcping on Fedora 34
Introduction
In this tutorial we learn how to install tcping
on Fedora 34.
What is tcping
tcping does a TCP connect to the given ip/port combination. The user can specify a timeout in seconds. This is useful in shell scripts running in firewalled environments. Often SYNs are just being dropped by firewalls, thus connection establishment will be retried several times (for minutes) until a TCP timeout is reached. With tcping it is possible to check first if the desired port is reachable and then start connection establishment.
We can use yum
or dnf
to install tcping
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install tcping.
Install tcping on Fedora 34 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
The output should look something like this:
Fedora 34 - x86_64 20 kB/s | 6.6 kB 00:00
Fedora 34 openh264 (From Cisco) - x86_64 1.4 kB/s | 989 B 00:00
Fedora Modular 34 - x86_64 68 kB/s | 6.5 kB 00:00
Fedora 34 - x86_64 - Updates 3.5 kB/s | 6.2 kB 00:01
Fedora Modular 34 - x86_64 - Updates 17 kB/s | 5.9 kB 00:00
Metadata cache created.
After updating yum database, We can install tcping
using dnf
by running the following command:
sudo dnf -y install tcping
Install tcping on Fedora 34 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
The output should look something like this:
Fedora 34 - x86_64 20 kB/s | 6.6 kB 00:00
Fedora 34 openh264 (From Cisco) - x86_64 1.4 kB/s | 989 B 00:00
Fedora Modular 34 - x86_64 68 kB/s | 6.5 kB 00:00
Fedora 34 - x86_64 - Updates 3.5 kB/s | 6.2 kB 00:01
Fedora Modular 34 - x86_64 - Updates 17 kB/s | 5.9 kB 00:00
Metadata cache created.
After updating yum database, We can install tcping
using yum
by running the following command:
sudo yum -y install tcping
How To Uninstall tcping on Fedora 34
To uninstall only the tcping
package we can use the following command:
sudo dnf remove tcping
tcping Package Contents on Fedora 34
/usr/bin/tcping
/usr/lib/.build-id
/usr/lib/.build-id/2e
/usr/lib/.build-id/2e/db546403cfa33fba4f38e7256eacc94385a942
/usr/share/doc/tcping
/usr/share/doc/tcping/LICENSE
/usr/share/doc/tcping/README
References
Summary
In this tutorial we learn how to install tcping
on Fedora 34 using yum and dnf.