Skip to content

tej-prash/simple-file-system

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

simple-file-system

A simple file system (SFS) built in C using FUSE

Setup instructions (Ubuntu)

Dependencies

File System in User Space (FUSE) must be installed.

sudo apt-get install libfuse-dev
sudo apt-get install fuse

Running SFS

  • Compile and run sfs_setup.c using gcc
gcc sfs_setup.c -o sfs_setup
./sfs_setup
  • Compile and run sfs.c using FUSE
gcc sfs.c -o sfs `pkg-config fuse --cflags --libs`
./ssfs -f <path-to-mount-point>

About

A simple file system built in C using FUSE

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages