μFS is a simple file system written in C for Linux Kernel 4.9.6
- to compile code go to respective directory i.e. cmds or kernel
- run "make"
- it will create module mfs.ko
- insert it in kernel using "insmod mfs.ko"
- remove module from kernel using "rmmod mfs.ko"
- Supports up to 1024 blocks of size 1024 bytes each
- Supports directory name of up to 14 characters
- Supports maximum 64 directory entries
- Allows creation and removal of up to 1024 files
- Maintains time of creation, deletion and modification of files
- Supports access permissions (Read - Write - Execute - owner)
ToDo:
- File read and write operations