Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Implementing basic file system

As a college project I need to implement a basic file system from within a file. So how do I go about this? What are the things that I would need to know? The requirements include having a daemon process in the background. Also the applications that use this system need to connect to the server using a Unix domain socket

The file system should have the following capabilities:

  1. List files stored along with their sizes.
  2. Create files
  3. Allow changes to files
  4. Delete files
like image 243
5lackp1x3l0x17 Avatar asked Feb 03 '10 04:02

5lackp1x3l0x17


1 Answers

Check this out if it can help. http://www.geocities.ws/ravikiran_uvs/articles/rkfs.html

If you want to create a file system in user space FUSE can help you. http://fuse.sourceforge.net/

like image 136
GeekTantra Avatar answered Nov 09 '22 23:11

GeekTantra