Skip to content

Instantly share code, notes, and snippets.

@liesislukas
Forked from hedleysmith/h2load_installation.sh
Created November 9, 2016 21:52
Show Gist options
  • Save liesislukas/647c05f6d874b130afc9aeb2ec5efaae to your computer and use it in GitHub Desktop.
Save liesislukas/647c05f6d874b130afc9aeb2ec5efaae to your computer and use it in GitHub Desktop.
Installing nghttp2 & h2load on Ubuntu 14.04
#! /bin/bash
sudo apt-get update
sudo apt-get install g++ make binutils autoconf automake autotools-dev libtool pkg-config zlib1g-dev libcunit1-dev libssl-dev libxml2-dev libev-dev libevent-dev -y
git clone https://github.com/nghttp2/nghttp2.git && cd nghttp2
autoreconf -i
automake
autoconf
./configure --enable-apps
make
./src/h2load --help
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment