How To Install librte-stack0.200 on Ubuntu 20.04

In this tutorial we learn how to install librte-stack0.200 on Ubuntu 20.04. librte-stack0.200 is Data Plane Development Kit (librte-stack runtime library) Data Plane Development Kit (librte-stack runtime library) Data Plane Development Kit (librte-stack runtime library)

Introduction

In this tutorial we learn how to install librte-stack0.200 on Ubuntu 20.04.

What is librte-stack0.200

librte-stack0.200 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-stack. FYI: This library still is highly experimental.

Package: librte-stack0.200 Architecture: amd64 Version: 19.11.3-0ubuntu0.2 Multi-Arch: same Priority: optional Section: universe/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: 53 Depends: libbsd0 (>= 0.0), libc6 (>= 2.4), libnuma1 (>= 2.0.11), librte-eal20.0 (>= 19.11), librte-kvargs20.0 (>= 18.08) Conflicts: libdpdk0 Filename: pool/universe/d/dpdk/librte-stack0.200_19.11.3-0ubuntu0.2_amd64.deb Size: 6452 MD5sum: eac724a86d643b4477d34054b8dd2c6f SHA1: 15706d558fa078f1fbd26cf43a818ffdc39e0306 SHA256: 978a72a4df1e0cafbf187cedf6e2ac5bff1c065c56b91ab08372ac000a6065fa SHA512: b74b26b1b852f8f84e59cc026a0f03ee6efd824b0b28b78188a91bdd8ee83303eb9a17fe913fd4ee5ccee8ab78598c363698276810ebfa2412005a8052934c19 Homepage: https://doc.dpdk.org/guides/prog_guide/stack_lib.html Description-en: Data Plane Development Kit (librte-stack 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-stack. FYI: This library still is highly experimental.

Package: librte-stack0.200 Architecture: amd64 Version: 19.11.1-0ubuntu1 Multi-Arch: same Priority: optional Section: universe/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: 52 Depends: libbsd0 (>= 0.0), libc6 (>= 2.4), libnuma1 (>= 2.0.11), librte-eal20.0 (>= 19.11), librte-kvargs20.0 (>= 18.08) Conflicts: libdpdk0 Filename: pool/universe/d/dpdk/librte-stack0.200_19.11.1-0ubuntu1_amd64.deb Size: 6448 MD5sum: 993a0cf63fab254700ceacd47fd50108 SHA1: 1a541a8110c61e95f46f49d7bbf5a319056e3163 SHA256: da624d6101212655c0eccde7b24d5c3ea7f92e5d58e777a738823b915036d80f Homepage: https://doc.dpdk.org/guides/prog_guide/stack_lib.html Description-en: Data Plane Development Kit (librte-stack 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-stack. FYI: This library still is highly experimental.

There are three methods to install librte-stack0.200 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-stack0.200 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-stack0.200 using apt-get by running the following command:

sudo apt-get -y install librte-stack0.200

Install librte-stack0.200 Using apt

Update apt database with apt using the following command.

sudo apt update

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

sudo apt -y install librte-stack0.200

Install librte-stack0.200 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-stack0.200 using aptitude by running the following command:

sudo aptitude -y install librte-stack0.200

How To Uninstall librte-stack0.200 on Ubuntu 20.04

To uninstall only the librte-stack0.200 package we can use the following command:

sudo apt-get remove librte-stack0.200

Uninstall librte-stack0.200 And Its Dependencies

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

sudo apt-get -y autoremove librte-stack0.200

Remove librte-stack0.200 Configurations and Data

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

sudo apt-get -y purge librte-stack0.200

Remove librte-stack0.200 configuration, data, and all of its dependencies

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

sudo apt-get -y autoremove --purge librte-stack0.200

References

Summary

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