Created
December 13, 2011 01:50
-
-
Save matthewhudson/1470024 to your computer and use it in GitHub Desktop.
Ubuntu s3fs install & dependencies.
This file contains 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
# Install prerequisites before compiling: | |
apt-get install build-essential | |
apt-get install libfuse-dev | |
apt-get install fuse-utils | |
apt-get install libcurl4-openssl-dev | |
apt-get install libxml2-dev | |
apt-get install mime-support | |
# Download and Install | |
wget http://s3fs.googlecode.com/files/s3fs-1.61.tar.gz | |
tar xvzf s3fs-1.61.tar.gz | |
cd s3fs-1.61/ | |
./configure --prefix=/usr | |
make | |
sudo make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment