You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by vi...@apache.org on 2016/10/21 19:07:43 UTC

mesos git commit: Updated getting started for Ubuntu 16.04.

Repository: mesos
Updated Branches:
  refs/heads/master b75aa8ada -> 89e7d362e


Updated getting started for Ubuntu 16.04.

To follow the getting started instructions to install Mesos on
Ubuntu 16.04, it is needed to install one more dependency.

This closes #173


Project: http://git-wip-us.apache.org/repos/asf/mesos/repo
Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/89e7d362
Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/89e7d362
Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/89e7d362

Branch: refs/heads/master
Commit: 89e7d362e0cf57758bfa44328c5ea2917251d189
Parents: b75aa8a
Author: Johannes Unterstein <ju...@mesosphere.io>
Authored: Fri Oct 21 12:07:07 2016 -0700
Committer: Vinod Kone <vi...@gmail.com>
Committed: Fri Oct 21 12:07:07 2016 -0700

----------------------------------------------------------------------
 docs/getting-started.md | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/89e7d362/docs/getting-started.md
----------------------------------------------------------------------
diff --git a/docs/getting-started.md b/docs/getting-started.md
index de3fba4..69e8da5 100644
--- a/docs/getting-started.md
+++ b/docs/getting-started.md
@@ -48,6 +48,25 @@ Following are the instructions for stock Ubuntu 14.04. If you are using a differ
 
     # Install other Mesos dependencies.
     $ sudo apt-get -y install build-essential python-dev libcurl4-nss-dev libsasl2-dev libsasl2-modules maven libapr1-dev libsvn-dev
+    
+### Ubuntu 16.04
+
+Following are the instructions for stock Ubuntu 16.04. If you are using a different OS, please install the packages accordingly.
+
+    # Update the packages.
+    $ sudo apt-get update
+
+    # Install a few utility tools.
+    $ sudo apt-get install -y tar wget git
+
+    # Install the latest OpenJDK.
+    $ sudo apt-get install -y openjdk-8-jdk
+
+    # Install autotools (Only necessary if building from git repository).
+    $ sudo apt-get install -y autoconf libtool
+
+    # Install other Mesos dependencies.
+    $ sudo apt-get -y install build-essential python-dev libcurl4-nss-dev libsasl2-dev libsasl2-modules maven libapr1-dev libsvn-dev zlib1g-dev
 
 ### Mac OS X Yosemite & El Capitan