Linux Headers
In order to compile the kernel version specific eBPF object, Tracee needs some of the Linux kernel headers. Depending on your Linux distribution, there may be different ways to obtain them.
- On Ubuntu/Debian/Arch/Manjaro install the
linux-headers
package. - On CentOS/Fedora install the
kernel-headers
andkernel-devel
packages.
Normally the files will be installed in /lib/modules/${kernel_version}/build
which is where Tracee expects them. If you have the headers elsewhere, you can set the KERN_HEADERS
environment variable with the correct location.
Note that it's important that the kernel headers match the exact version of the kernel you are running. To check the current kernel version, run the command
uname -r
. To install a specific kernel headers version append the version to the package name:linux-headers-$(uname -r)
.Note that more often than not the kernel headers files contains filesystem links to other files in other directories. Therefore, when passing the kernel headers to Tracee docker container, make sure all the necessary directories are mounted. This is why the quickstart example mounts
/usr/src
in addition to/lib/modules
.