如何在ubuntu中安装eapol_test

如何在ubuntu中安装eapol_test

我厌倦了如何安装这个包 eapol_test,我在网上阅读了如何安装它,但它多次不起作用,所以如何以简单简洁的方式在 Ubuntu 中安装 eapol_test ? (我的Ubuntu 20.04.3)

答案1

您可以从 Ubuntu 的 Universe 存储库安装它hirsuteimpish并且jammy

sudo add-apt-repository universe
sudo apt update
sudo apt install eapoltest

您可以为所有 Ubuntu 版本构建软件包:

sudo apt install git libssl-dev devscripts pkg-config libnl-3-dev libnl-genl-3-dev
git clone --depth 1 --no-single-branch https://github.com/FreeRADIUS/freeradius-server.git
cd freeradius-server/scripts/ci/
./eapol_test-build.sh
cp ./eapol_test/eapol_test /usr/local/bin/

相关内容