Skip to content

Instantly share code, notes, and snippets.

@BitPopCoin
BitPopCoin / h2load_installation.sh
Created December 9, 2016 06:16 — forked from hedleysmith/h2load_installation.sh
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