Last active
August 29, 2015 14:23
-
-
Save avtomaton/c72ea58cb123088ec70b to your computer and use it in GitHub Desktop.
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
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