How To Install libnet10 on Fedora 34

libnet10 is High-level API (toolkit) to construct and inject network packets High-level API (toolkit) to construct and inject network packets

Introduction

In this tutorial we learn how to install libnet10 on Fedora 34.

What is libnet10

Libnet is a high-level API (toolkit) allowing the application programmer to construct and inject network packets. It provides a portable and simplified interface for low-level network packet shaping, handling and injection. Libnet hides much of the tedium of packet creation from the application programmer such as multiplexing, buffer management, arcane packet header information, byte-ordering, OS-dependent issues and much more. Libnet features portable packet creation interfaces at the IP layer and link layer, as well as a host of supplementary and complementary functionality. This package contains an old and deprecated version of libnet. You need it only if the software you are using hasn’t been updated to work with the newer version and the newer API. libnet10 1.0.2a 37.fc34 x86_64 43 k libnet10-1.0.2a-37.fc34.src.rpm fedora High-level API (toolkit) to construct and inject network packets http BSD Libnet is a high-level API (toolkit) allowing the application programmer to construct and inject network packets. It provides a portable and simplified interface for low-level network packet shaping, handling and injection. Libnet hides much of the tedium of packet creation from the application programmer such as multiplexing, buffer management, arcane packet header information, byte-ordering, OS-dependent issues and much more. Libnet features portable packet creation interfaces at the IP layer and link layer, as well as a host of supplementary and complementary functionality. This package contains an old and deprecated version of libnet. You need it only if the software you are using hasn’t been updated to work with the newer version and the newer API.

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

Install libnet10 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 libnet10 using dnf by running the following command:

sudo dnf -y install libnet10

Install libnet10 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 libnet10 using yum by running the following command:

sudo yum -y install libnet10

How To Uninstall libnet10 on Fedora 34

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

sudo dnf remove libnet10

libnet10 Package Contents on Fedora 34

/usr/lib/.build-id
/usr/lib/.build-id/3e
/usr/lib/.build-id/3e/80faff38808b72dced121303cc94baa34c2fd6
/usr/lib64/libnet10.so.0
/usr/lib64/libnet10.so.0.0.0
/usr/share/doc/libnet10
/usr/share/doc/libnet10/CHANGELOG
/usr/share/doc/libnet10/README
/usr/share/licenses/libnet10
/usr/share/licenses/libnet10/COPYING
/usr/share/man/man3/libnet10.3.gz
/usr/lib/.build-id
/usr/lib/.build-id/46
/usr/lib/.build-id/46/684c6051b6312723a308116f62473d1293939e
/usr/lib/libnet10.so.0
/usr/lib/libnet10.so.0.0.0
/usr/share/doc/libnet10
/usr/share/doc/libnet10/CHANGELOG
/usr/share/doc/libnet10/README
/usr/share/licenses/libnet10
/usr/share/licenses/libnet10/COPYING
/usr/share/man/man3/libnet10.3.gz

References

Summary

In this tutorial we learn how to install libnet10 on Fedora 34 using yum and dnf.