Building and Running FiberFS

Home

Github

git clone https://github.com/fiberfs/fiberfs.git

FiberFS on Github

Building

make
Don't forget to add "-j4" (4 being the number of available cores to use) to all your make commands.

Testing

make test

Config

At minimum, your FiberFS config file (fiberfs.conf) just needs to define your S3 endpoint:

S3_HOST = my-bucket.s3.region123.cloud-provider.com
S3_REGION = region123
S3_ACCESS_KEY = ACCESS_KEY_STRING
S3_SECRET_KEY = SECRET_KEY_STRING

Running

./fiberfs [fiberfs.conf] [mount_point]

Logging

./fiberfs_log [mount_point]

Content

Home