linux - Implementing basic file system -
As a college project, I need to implement a basic file system from within a file. How about to go? What do I need to know? Requirements include having a daemon process in the background Also, applications using this system need to connect to the server using the Unix domain socket
The file system should have the following capabilities:
- List files are stored with them
- Create files
- Allow changes to files
- Delete files
it out if it can help
If you want to create a file system in user space, FUSE can help.
Comments
Post a Comment