How To Install udt on Rocky Linux 8
Introduction
In this tutorial we learn how to install udt
on Rocky Linux 8.
What is udt
UDT is a reliable UDP based application level data transport protocol for distributed data intensive applications over wide area high-speed networks. UDT uses UDP to transfer bulk data with its own reliability control and congestion control mechanisms. The new protocol can transfer data at a much higher speed than TCP does. UDT is also a highly configurable framework that can accommodate various congestion control algorithms.
We can use yum
or dnf
to install udt
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install udt.
Install udt on Rocky Linux 8 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install udt
using dnf
by running the following command:
sudo dnf -y install udt
Install udt on Rocky Linux 8 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install udt
using yum
by running the following command:
sudo yum -y install udt
How To Uninstall udt on Rocky Linux 8
To uninstall only the udt
package we can use the following command:
sudo dnf remove udt
udt Package Contents on Rocky Linux 8
/usr/lib/.build-id
/usr/lib/.build-id/99
/usr/lib/.build-id/99/e32b25694a6bb41a67cb3f283a1a65d09ed1f7
/usr/lib64/libudt.so.0
/usr/share/doc/udt
/usr/share/doc/udt/RELEASE_NOTES.txt
/usr/share/licenses/udt
/usr/share/licenses/udt/LICENSE.txt
References
Summary
In this tutorial we learn how to install udt
on Rocky Linux 8 using yum and dnf.