How To Install librte-mempool20.0 on Ubuntu 20.04

In this tutorial we learn how to install librte-mempool20.0 on Ubuntu 20.04. librte-mempool20.0 is Data Plane Development Kit (librte-mempool runtime library) Data Plane Development Kit (librte-mempool runtime library) Data Plane Development Kit (librte-mempool runtime library)

Introduction

In this tutorial we learn how to install librte-mempool20.0 on Ubuntu 20.04.

What is librte-mempool20.0

librte-mempool20.0 is:

DPDK is a set of libraries for fast packet processing. Applications run in user-space and communicate directly with dedicated network interfaces.

This package contains the runtime libraries for librte_mempool.

Package: librte-mempool20.0 Architecture: amd64 Version: 19.11.3-0ubuntu0.2 Multi-Arch: same Priority: optional Section: libs Source: dpdk Origin: Ubuntu Maintainer: Ubuntu Developers [email protected] Original-Maintainer: Debian DPDK Maintainers [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 70 Depends: libbsd0 (>= 0.0), libc6 (>= 2.4), libnuma1 (>= 2.0.11), librte-eal20.0 (>= 19.11), librte-kvargs20.0 (>= 18.08), librte-ring20.0 (>= 19.08) Conflicts: libdpdk0 Filename: pool/main/d/dpdk/librte-mempool20.0_19.11.3-0ubuntu0.2_amd64.deb Size: 12504 MD5sum: e9401c875318eb530e852edbe406f0f0 SHA1: 4621da962ddff88273de8e8921a107a7c897e185 SHA256: 472cba973467890fbe35b6f856428d4b886bbded7b48e4980f17e3e114bd40df SHA512: 828e985ce35e095309b6ec455ecd31812af11740af76d8de2a058413accbd6a021e0289da286ed2902b5c6a34f0bacb4d74b9bc33f00eada948a6e181298824e Homepage: https://dpdk.org/doc/api/rte__mempool_8h.html Description-en: Data Plane Development Kit (librte-mempool runtime library) DPDK is a set of libraries for fast packet processing. Applications run in user-space and communicate directly with dedicated network interfaces.

This package contains the runtime libraries for librte_mempool.

Package: librte-mempool20.0 Architecture: amd64 Version: 19.11.1-0ubuntu1 Multi-Arch: same Priority: optional Section: libs Source: dpdk Origin: Ubuntu Maintainer: Ubuntu Developers [email protected] Original-Maintainer: Debian DPDK Maintainers [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 69 Depends: libbsd0 (>= 0.0), libc6 (>= 2.4), libnuma1 (>= 2.0.11), librte-eal20.0 (>= 19.11), librte-kvargs20.0 (>= 18.08), librte-ring20.0 (>= 19.08) Conflicts: libdpdk0 Filename: pool/main/d/dpdk/librte-mempool20.0_19.11.1-0ubuntu1_amd64.deb Size: 12492 MD5sum: c751f4215d9416bfe649b1c3331f699c SHA1: c4ca8aadd2521b3a2bebcedcc60b52f9beae58f8 SHA256: bbeea5b25c300d5c2ebafd71bafb0d3d4682c88e53617d04e55ce69a205d5da2 Homepage: https://dpdk.org/doc/api/rte__mempool_8h.html Description-en: Data Plane Development Kit (librte-mempool runtime library) DPDK is a set of libraries for fast packet processing. Applications run in user-space and communicate directly with dedicated network interfaces.

This package contains the runtime libraries for librte_mempool.

There are three methods to install librte-mempool20.0 on Ubuntu 20.04. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install librte-mempool20.0 Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install librte-mempool20.0 using apt-get by running the following command:

sudo apt-get -y install librte-mempool20.0

Install librte-mempool20.0 Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install librte-mempool20.0 using apt by running the following command:

sudo apt -y install librte-mempool20.0

Install librte-mempool20.0 Using aptitude

If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Ubuntu. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install librte-mempool20.0 using aptitude by running the following command:

sudo aptitude -y install librte-mempool20.0

How To Uninstall librte-mempool20.0 on Ubuntu 20.04

To uninstall only the librte-mempool20.0 package we can use the following command:

sudo apt-get remove librte-mempool20.0

Uninstall librte-mempool20.0 And Its Dependencies

To uninstall librte-mempool20.0 and its dependencies that are no longer needed by Ubuntu 20.04, we can use the command below:

sudo apt-get -y autoremove librte-mempool20.0

Remove librte-mempool20.0 Configurations and Data

To remove librte-mempool20.0 configuration and data from Ubuntu 20.04 we can use the following command:

sudo apt-get -y purge librte-mempool20.0

Remove librte-mempool20.0 configuration, data, and all of its dependencies

We can use the following command to remove librte-mempool20.0 configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge librte-mempool20.0

References

Summary

In this tutorial we learn how to install librte-mempool20.0 package on Ubuntu 20.04 using different package management tools: apt, apt-get and aptitude.