Implementing basic file system

file, filesystems, linux

Solution

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/

Problem

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: - List files stored along with their sizes. - Create files - Allow changes to files - Delete files

Original source

Related problems