Skip to content

Instantly share code, notes, and snippets.

@elprup
Last active February 15, 2017 09:09
Show Gist options
  • Save elprup/4071279 to your computer and use it in GitHub Desktop.
Save elprup/4071279 to your computer and use it in GitHub Desktop.
install facebook/scribe in ubuntu lucid 10.04 script
#!/bin/bash
sudo apt-get update
sudo apt-get install libboost-all-dev libboost-test-dev libboost-program-options-dev libevent-dev automake libtool flex bison pkg-config g++ libssl-dev git-core make
wget http://archive.apache.org/dist/thrift/0.9.0/thrift-0.9.0.tar.gz
tar xzvf thrift-0.9.0.tar.gz
cd thrift-0.9.0
./configure
make
sudo make install
cd contrib/fb303/
./bootstrap.sh
./configure
make
sudo make install
cd ../../../
git clone git://github.com/facebook/scribe.git
cd scribe/
./bootstrap.sh
./configure CPPFLAGS="-DHAVE_INTTYPES_H -DHAVE_NETINET_IN_H"
make
sudo make install
sudo ldconfig
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment