Last active
June 10, 2019 05:18
-
-
Save jeffbeagley/25895b42ceade0462e5bc1bc79d0577f to your computer and use it in GitHub Desktop.
openconnect make and install
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//notes on how I manually installed openconnect from source on Ubuntu 19.04 | |
//install dependencies first | |
sudo apt install libxml2 pkg-config libssl-dev zlib1g-dev | |
//ensure vpnc script is there | |
wget http://git.infradead.org/users/dwmw2/vpnc-scripts.git/blob_plain/HEAD:/vpnc-script | |
sudo mkdir /usr/share/vpnc-scripts/ | |
sudo cp vpnc-script /usr/share/vpnc-scripts/ | |
sudo chmod +x /usr/share/vpnc-scripts/vpnc-script | |
//for ubuntu 19.04 i had to remove some packages that were left behind | |
sudo apt autoremove | |
./configure | |
sudo make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment