How to resolve this error ?
root@ubuntu:/tmp# gcc a.c -o a -lkeyutils -Wall
a.c:8:22: fatal error: keyutils.h: No such file or directory
compilation terminated.
root@ubuntu:/tmp# 5 1 Answer
To resolve this error check the installation status of libkeyutils-dev
apt-cache policy libkeyutils-dev
If the package has not been installed, install it with
sudo apt-get install libkeyutils-dev