Repository: mesos Updated Branches: refs/heads/master 902b8dee3 -> 474963306
Added instructions for getting started with CentOS. Review: https://reviews.apache.org/r/25272 Project: http://git-wip-us.apache.org/repos/asf/mesos/repo Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/47496330 Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/47496330 Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/47496330 Branch: refs/heads/master Commit: 47496330694be0fa83f40a673a7e69632c0ba107 Parents: 902b8de Author: Thomas Rampelberg <[email protected]> Authored: Tue Sep 2 14:21:57 2014 -0700 Committer: Vinod Kone <[email protected]> Committed: Tue Sep 2 14:23:10 2014 -0700 ---------------------------------------------------------------------- docs/getting-started.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/mesos/blob/47496330/docs/getting-started.md ---------------------------------------------------------------------- diff --git a/docs/getting-started.md b/docs/getting-started.md index 78205dd..1602914 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -21,6 +21,8 @@ There are different ways you can get Mesos: - Mesos runs on Linux (64 Bit) and Mac OSX (64 Bit). +### Ubuntu 12.04 + - Following are the instructions for stock Ubuntu 12.04 64 Bit. If you are using a different OS please install the packages accordingly. # Ensure apt-get is up to date. @@ -52,6 +54,18 @@ There are different ways you can get Mesos: # Install libtool. $ sudo apt-get install libtool +### CentOS 6.5 + +- Following are the instructions for stock CentOS 6.5. If you are using a different OS, please install the packages accordingly. + + $ sudo yum groupinstall -y "Development Tools" + + $ sudo yum install -y python-devel java-1.7.0-openjdk-devel zlib-devel libcurl-devel openssl-devel cyrus-sasl-devel cyrus-sasl-md5 + + # Install maven. + $ wget http://mirror.nexcess.net/apache/maven/maven-3/3.0.5/binaries/apache-maven-3.0.5-bin.tar.gz + $ sudo tar -zxcf apache-maven-3.0.5-bin.tar.gz -C /opt/ + $ sudo ln -s /opt/apache-maven-3.0.5/bin/mvn /usr/bin/mvn ## Building Mesos
