You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by me...@apache.org on 2012/07/26 03:05:52 UTC

svn commit: r1365861 - /accumulo/trunk/README_UBUNTU

Author: medined
Date: Thu Jul 26 01:05:52 2012
New Revision: 1365861

URL: http://svn.apache.org/viewvc?rev=1365861&view=rev
Log:
ACCUMULO-702 - build on ubuntu hangs without required dependencies (or add Ubuntu-specific README)

Added:
    accumulo/trunk/README_UBUNTU

Added: accumulo/trunk/README_UBUNTU
URL: http://svn.apache.org/viewvc/accumulo/trunk/README_UBUNTU?rev=1365861&view=auto
==============================================================================
--- accumulo/trunk/README_UBUNTU (added)
+++ accumulo/trunk/README_UBUNTU Thu Jul 26 01:05:52 2012
@@ -0,0 +1,41 @@
+When compiling Accumulo on Ubuntu, you might need to install several dependencies. The 
+following notes are not guaranteed since there are so many different server configurations.
+Please let us know if anything is wrong or could be improved.
+
+---------------------------
+- ACCUMULO 1.5.0-SNAPSHOT -
+---------------------------
+
+---
+- Install texline-latex-extra
+
+If you run into an error about a missing multirow.sty, it can be resolved by installing
+the texline-latex-extra package:
+
+ sudo apt-get install texline-latex-extra
+
+ ---
+ - Install thrift
+
+ If you run into an error that thrift is not installed, it can be resolved by downloading, 
+ compiling, and installing thift. The following steps worked for me
+
+  sudo apt-get install g++
+  sudo apt-get install python-dev
+  sudo apt-get install libbz2-dev
+  sudo apt-get install bison flex
+  sudo apt-get install build-essential
+
+   wget http://sourceforge.net/projects/boost/files/boost/1.50.0/boost_1_50_0.tar.gz/download -O boost_1_50_0.tar.gz
+   tar xvzf boost_1_50_0.tar.gz
+   cd boost_1_50_0
+   ./bootstrap.sh
+   sudo ./b2
+
+   svn co http://svn.apache.org/repos/asf/thrift/branches/0.8.x thrift_0.8
+   cd thrift_0.8
+   ./bootstrap.sh
+   ./configure
+   make
+   sudo make install
+