How To Install traceroute on AlmaLinux 8

In this tutorial we learn how to install traceroute in AlmaLinux 8. traceroute is Traces the route taken by packets over an IPv4/IPv6 network

Introduction

In this tutorial we learn how to install traceroute on AlmaLinux 8.

What is traceroute

The traceroute utility displays the route used by IP packets on their way to a specified network (or Internet) host. Traceroute displays the IP number and host name (if possible) of the machines along the route taken by the packets. Traceroute is used as a network debugging tool. If you’re having network connectivity problems, traceroute will show you where the trouble is coming from along the route. Install traceroute if you need a tool for diagnosing network connectivity problems.

We can use yum or dnf to install traceroute on AlmaLinux 8. In this tutorial we discuss both methods but you only need to choose one of method to install traceroute.

Install traceroute on AlmaLinux 8 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

After updating yum database, We can install traceroute using dnf by running the following command:

sudo dnf -y install traceroute

Install traceroute on AlmaLinux 8 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

After updating yum database, We can install traceroute using yum by running the following command:

sudo yum -y install traceroute

How To Uninstall traceroute on AlmaLinux 8

To uninstall only the traceroute package we can use the following command:

sudo dnf remove traceroute

References

Summary

In this tutorial we learn how to install traceroute on AlmaLinux 8 using yum and dnf.