Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 543 Bytes

README.md

File metadata and controls

23 lines (15 loc) · 543 Bytes

Learing eBPF

Prerequisits

In Debian systems we can easily install the needed libs with:

sudo apt install libelf-dev libbpfcc-dev bpfcc-tools clang

Usage

To generate and attach the BPF probes to the kernel we just need to compile and run the desired program:

make APP=file_name_without_cpp
sudo ./file_name_without_cpp

Kprobes