From 716f99cda5f29dad3d8bd63ae21f109c5482c0a7 Mon Sep 17 00:00:00 2001 From: Lourival Vieira Neto Date: Wed, 15 May 2024 14:56:24 +0000 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9ac20ca..62fa407 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Ubuntu 22.04 LTS with kernel version 5.15. The main dependencies are `libxdp`, `libbpf`, `llvm`, `clang` and `libelf`. `LLVM` and `clang` compiles our restricted-C programs into BPF-byte-code, which is stored in an ELF object file (`libelf`), that is loaded by `libbpf` into the kernel via the `bpf` syscall. XDP programs are managed by `libxdp` which implements the XDP multi-dispatch protocol. Finally, the kernel headers are required for compilation of the program. Thanks [xdp-project](https://github.com/xdp-project/xdp-tutorial/blob/master/setup_dependencies.org)! ```sh -sudo apt install clang llvm libelf-dev libbpf-dev libpcap-dev build-essential linux-headers-$(uname -r) linux-tools-common linux-tools-generic tcpdump +sudo apt install clang llvm libelf-dev libbpf-dev libpcap-dev build-essential linux-headers-$(uname -r) linux-tools-common linux-tools-$(uname -r) tcpdump ``` ## Usage