Skip to content

Instantly share code, notes, and snippets.

@jcallin
Last active May 23, 2023 09:19
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jcallin/5dcb6fcc3b250979aaa88a28567475fe to your computer and use it in GitHub Desktop.
Save jcallin/5dcb6fcc3b250979aaa88a28567475fe to your computer and use it in GitHub Desktop.
Install s3fs on Alpine Linux
apk update && apk add git
apk add build-base automake autoconf libxml fuse-dev curl-dev
git clone https://github.com/s3fs-fuse/s3fs-fuse.git
cd s3fs-fuse
./autogen.sh
./configure
make
make install
@huide9
Copy link

huide9 commented Aug 3, 2020

apk add libxml2-dev
and some more packages are needed for alpine 3.6. not sure yours?

@congthang1
Copy link

So I rewrite:

apk update && apk add git
apk add build-base automake autoconf libxml2-dev fuse-dev curl-dev
git clone https://github.com/s3fs-fuse/s3fs-fuse.git
cd s3fs-fuse
./autogen.sh
./configure
make
make install

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment