Last active
February 15, 2017 09:09
-
-
Save elprup/4071279 to your computer and use it in GitHub Desktop.
install facebook/scribe in ubuntu lucid 10.04 script
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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