我正在从https://wiki.whamcloud.com/display/PUB/Build+Lustre+MASTER+with+Ldiskfs+on+Ubuntu+20.04.1+from+Git#BuildLustreMASTERwithLdiskfsonUbuntu20.04.1fromGit-Prerequisites源码在ubuntu20.04 Linux Ubuntu 20.04, kernel version - 4.15.0-154-generic上安装lustre文件系统。在最后一步,当我configure它时,得到:
checking for LIBNL3... no
configure: error: Package requirements (libnl-genl-3.0 >= 3.1) were not met:
No package 'libnl-genl-3.0' found
Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.
Alternatively, you may set the environment variables LIBNL3_CFLAGS
and LIBNL3_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.
``` error. 可能是什么问题?
发布于 2021-09-10 17:30:13
您需要安装所需的-dev库:
$ apt search libnl-genl
...
$ sudo apt install libnl-genl-3-devhttps://stackoverflow.com/questions/69135853
复制相似问题