Skip to content

Instantly share code, notes, and snippets.

@v-thomp4
Created December 7, 2015 05:08
Show Gist options
  • Save v-thomp4/6ff3438a052b1356acc1 to your computer and use it in GitHub Desktop.
Save v-thomp4/6ff3438a052b1356acc1 to your computer and use it in GitHub Desktop.
Install mesos, marathon
# Install java 8
sudo add-apt-repository ppa:webupd8team/java
sudo apt-get update
sudo apt-get install oracle-java8-installer
# Setup
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv E56151BF
DISTRO=$(lsb_release -is | tr '[:upper:]' '[:lower:]')
CODENAME=$(lsb_release -cs)
# Add the repository
echo "deb http://repos.mesosphere.com/${DISTRO} ${CODENAME} main" | \
sudo tee /etc/apt/sources.list.d/mesosphere.list
sudo apt-get -y update
sudo apt-get -y install mesos marathon
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment