openvpn-2.4.8
https://swupdate.openvpn.org/community/releases/openvpn-2.4.8.tar.gz
Ubuntu 18.04.4 LTS
我想要构建并安装 OpenVPN。
tar -zxf openvpn-<version>.tar.gz
cd openvpn-<version>
./configure
我得到以下输出:
configure: error: lzo enabled but missing
尝试安装 lzo 产生以下结果。
sudo apt install liblzo2-2
liblzo2-2 is already the newest version (2.08-1.2).
如何安装 ./configure 脚本可以识别的 lzo 版本?
答案1
sudo apt-get install libssl-dev liblzo2-dev libpam0g-dev
帮我解决了。谢谢https://dietervansteenwegen.wordpress.com/2014/12/24/installing-openvpn-on-ubuntu-12-04/。