Last active
November 20, 2018 05:54
-
-
Save tmlbl/ad4ef5b47179e9c1356e62872d311e8e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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