Skip to content

Instantly share code, notes, and snippets.

@peerasan
Created June 8, 2019 14:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save peerasan/cdc193d961a96df77c48a6d694241d5f to your computer and use it in GitHub Desktop.
Save peerasan/cdc193d961a96df77c48a6d694241d5f to your computer and use it in GitHub Desktop.
setup-s3-fuse.sh
#Ubuntu
apt-get install build-essential git libfuse-dev libcurl4-openssl-dev libxml2-dev mime-support automake libtool libjsoncpp-dev pkg-config libssl-dev
#Alpine
apk --update add fuse alpine-sdk automake autoconf libxml2-dev fuse-dev curl-dev git openssl-dev
#Download source code, Compile and Install
wget https://github.com/s3fs-fuse/s3fs-fuse/archive/v1.83.tar.gz
tar xvzf v1.83.tar.gz
cd s3fs-fuse-1.83/
./autogen.sh
./configure --prefix=/usr
make
make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment