Skip to content

Commit

Permalink
s3fs install script
Browse files Browse the repository at this point in the history
  • Loading branch information
JiaweiZhuang committed Mar 2, 2018
1 parent a2b0f25 commit 2fd6612
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions build_library/s3fs/install_s3fs.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#!/bin/bash
# Install s3fs on ubuntu
# https://github.com/s3fs-fuse/s3fs-fuse

sudo apt-get install -y \
automake autotools-dev fuse g++ git \
libcurl4-gnutls-dev libfuse-dev libssl-dev libxml2-dev \
make pkg-config

git clone https://github.com/s3fs-fuse/s3fs-fuse.git
cd s3fs-fuse
./autogen.sh
./configure
make
sudo make install

0 comments on commit 2fd6612

Please sign in to comment.