Skip to content

Instantly share code, notes, and snippets.

@tpoxa
Created March 28, 2020 15:40
Show Gist options
  • Save tpoxa/01bc06febb6b9c904baca639fe4d54d3 to your computer and use it in GitHub Desktop.
Save tpoxa/01bc06febb6b9c904baca639fe4d54d3 to your computer and use it in GitHub Desktop.
Install libnsl dev on ubuntu 19.04
apt-get install libtool autoconf gettext unzip -y
mkdir -p /opt && cd /opt && \
wget https://github.com/thkukuk/libnsl/archive/v1.2.0.zip && \
unzip v1.2.0.zip && rm v1.2.0.zip && \
cd /opt/libnsl-1.2.0 && \
./autogen.sh && ./configure && cmake && make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment