Export to GitHub

s3fs - InstallationNotes.wiki


General Instructions

From released tarball

Download: http://s3fs.googlecode.com/files/s3fs-1.74.tar.gz
Download SHA1 checksum: 657925015b5e9c169579ad2f81f85651e0f2beaa
Download size: 199120

  • tar xvzf s3fs-1.74.tar.gz
  • cd s3fs-1.74/
  • ./configure --prefix=/usr
  • make
  • make install (as root)

From subversion repository

  • svn checkout http://s3fs.googlecode.com/svn/trunk/ s3fs
  • cd s3fs/
  • autoreconf --install (or ./autogen.sh)
  • ./configure --prefix=/usr
  • make
  • make install (as root)

Notes for Specific Operating Systems

Debian / Ubuntu

Tested on Ubuntu 10.10

Install prerequisites before compiling:

  • apt-get install build-essential
  • apt-get install libfuse-dev
  • apt-get install fuse-utils
  • apt-get install libcurl4-openssl-dev
  • apt-get install libxml2-dev
  • apt-get install mime-support

Fedora / CentOS

Tested on Fedora 14 Desktop Edition and CentOS 5.5 (Note: on Nov 25, 2010 with s3fs version 1.16, newer versions of s3fs have not been formally tested on these platforms)

Note: See the comment below on how to get FUSE 2.8.4 installed on CentOS 5.5

Install prerequisites before compiling:

  • yum install gcc
  • yum install libstdc++-devel
  • yum install gcc-c++
  • yum install fuse
  • yum install fuse-devel
  • yum install curl-devel
  • yum install libxml2-devel
  • yum install openssl-devel
  • yum install mailcap