https://github.com/euclio/fbfs
CS137 Final Project -- Facebook Filesystem
https://github.com/euclio/fbfs
Last synced: 2 months ago
JSON representation
CS137 Final Project -- Facebook Filesystem
- Host: GitHub
- URL: https://github.com/euclio/fbfs
- Owner: euclio
- License: mit
- Created: 2014-03-30T00:40:28.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2014-10-18T07:51:59.000Z (over 10 years ago)
- Last Synced: 2025-01-14T06:25:23.845Z (4 months ago)
- Language: C++
- Size: 543 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# FBFS: Facebook Filesystem
Final project for CS137: Filesystems.
## Installation
Requirements:
* C++ compiler with C++11 support
* CMake
* FUSE 2.6
* Boost system and filesystem libraries
* Qt5 WebKit moduleOnce the requirements are met, install FBFS by entering the following commands
into a terminal:```bash
cmake .
make
```The binary produced will be called `fbfs`.
## Running FBFS
Open a terminal and run FBFS with the following arguments:
```bash
mkdir -p testdir
./fbfs -s -d -f testdir
```Open a second terminal and enter:
```bash
ls testdir
```## Paper
If you'd like, you can read the paper that I wrote describing the filesystem
[here].[here]: paper/final_paper.pdf?raw=true