Skip to content

Instantly share code, notes, and snippets.

@alexwoolford
Created October 8, 2014 05:59
Show Gist options
  • Save alexwoolford/a9487affedc7527a3edf to your computer and use it in GitHub Desktop.
Save alexwoolford/a9487affedc7527a3edf to your computer and use it in GitHub Desktop.
# ssh into your AWS instance and setup s3fs:
sudo yum install git gcc libstdc++-devel gcc-c++ fuse fuse-devel curl-devel libxml2-devel openssl-devel mailcap automake
git clone git://github.com/s3fs-fuse/s3fs-fuse.git
cd s3fs-fuse/
./autogen.sh
./configure --prefix=/usr
make
sudo make install
echo '[AWS Access Key ID]:[AWS Secret Access Key]' | sudo tee /etc/passwd-s3fs
sudo chmod 400 /etc/passwd-s3fs
sudo mkdir /bucketxyz
sudo s3fs bucketxyz /bucketxyz
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment