Skip to content

Instantly share code, notes, and snippets.

@BitPopCoin
Forked from hedleysmith/h2load_installation.sh
Created December 9, 2016 06:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BitPopCoin/b311cd9094af1f78de0445c1f18c3b6b to your computer and use it in GitHub Desktop.
Save BitPopCoin/b311cd9094af1f78de0445c1f18c3b6b 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