Skip to content

Instantly share code, notes, and snippets.

@tmlbl
Last active November 20, 2018 05:54
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 tmlbl/ad4ef5b47179e9c1356e62872d311e8e to your computer and use it in GitHub Desktop.
Save tmlbl/ad4ef5b47179e9c1356e62872d311e8e to your computer and use it in GitHub Desktop.
# Script to set up the Seastar framework with DPDK on a GCP instance
# Instance should use the stock Ubuntu 16.04 LTS image
apt-get update
apt-get install -y git wget build-essential linux-image-extra-4.15.0-15-generic
export SEASTAR_VERSION=seastar-18.08.0
git clone https://github.com/scylladb/seastar
cd seastar
git checkout $SEASTAR_VERSION
git submodule update --init
./install-dependencies.sh
./configure.py --compiler=g++-5 --enable-dpdk
ninja
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment