Skip to content

Instantly share code, notes, and snippets.

@avtomaton
Last active August 29, 2015 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 avtomaton/c72ea58cb123088ec70b to your computer and use it in GitHub Desktop.
Save avtomaton/c72ea58cb123088ec70b to your computer and use it in GitHub Desktop.
sudo apt-get install git autotools libfuse-dev libssl-dev libxml2-dev libcurl4-gnutls-dev
git clone https://github.com/s3fs-fuse/s3fs-fuse
cd s3fs-fuse
./autogen.sh
./configure
make
sudo make install
cd ..
sudo mkdir /etc/s3
me=`whoami`
sudo chown $me:`id -g -n $me` /etc/s3
touch .passwd-s3fs
vim .passwd-s3fs
s3fs $1 /mnt/s3
# s3fs -o uid=1000,gid=1000 $1 /mnt/s3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment