Install DPDK 21.11 for Ubuntu 18.04

1. install python3 and python3-pip

sudo apt install python3
sudo apt install python3-pip

2.install meson and ninja by pip, it adviced to install meson for user to avoid access deny.

 pip3 install meson
 pip3 install ninja
 pip3 install --user meson

3.export enviorment variable

export PATH=$PATH:$HOME/.local/bin

4.install pkg-config tool

sudo apt-get install pkg-config

5.intsall axiruy tools

sudo apt-get install python-pyelftools python3-pyelftools

6.download DPDK 21.11 sources by any way, for example, you can down load in wedsite

7.unpacked the sources

tar -xf dpdk-21.11.5.tar.xz

8.build sources in path by meson

meson build
# compile for debug version
meson -Dbuildtype=debug -Dexamples=ALL -Denable_kmods=true build

ninja -C build
sudo ninja -C build install
pkg-config --modversion libdpdk

9.show lib version

A320M-DS2:~/Downloads/dpdk-stable-21.11.5$ pkg-config --modversion libdpdk
21.11.5

相关推荐

  1. 23111 网络编程 面试题

    2023-12-24 08:18:02       55 阅读
  2. 408数据结构专项2011

    2023-12-24 08:18:02       32 阅读
  3. P2494 [SDOI2011] 保密

    2023-12-24 08:18:02       34 阅读
  4. Ubuntu1804下如何切换python版本

    2023-12-24 08:18:02       56 阅读
  5. Ubuntu 1804 And Above Coredump Settings

    2023-12-24 08:18:02       55 阅读
  6. codeforces 1904B

    2023-12-24 08:18:02       58 阅读

最近更新

  1. docker php8.1+nginx base 镜像 dockerfile 配置

    2023-12-24 08:18:02       94 阅读
  2. Could not load dynamic library ‘cudart64_100.dll‘

    2023-12-24 08:18:02       100 阅读
  3. 在Django里面运行非项目文件

    2023-12-24 08:18:02       82 阅读
  4. Python语言-面向对象

    2023-12-24 08:18:02       91 阅读

热门阅读

  1. 在深度学习中,端到端的含义

    2023-12-24 08:18:02       52 阅读
  2. 完整的 Meteor NPM 集成

    2023-12-24 08:18:02       62 阅读
  3. k8s 定义 gRPC 存活探针

    2023-12-24 08:18:02       64 阅读
  4. Kafka怎么保证消息发送不丢失

    2023-12-24 08:18:02       46 阅读
  5. 【docker笔记】docker常用命令

    2023-12-24 08:18:02       54 阅读
  6. Python知识(3/20):Python运算符全解

    2023-12-24 08:18:02       61 阅读
  7. mobx-react快速入门使用

    2023-12-24 08:18:02       66 阅读
  8. 详解Keras3.0 KerasNLP Models: GPT2 GPT2Tokenizer

    2023-12-24 08:18:02       49 阅读
  9. MySQL8主主搭建

    2023-12-24 08:18:02       45 阅读