darshank15 / Inode-based-file-system

Implemented Inode based virtual file system on top of the Linux file system. User can perform all the operations which are basically supported by Linux ext2 file system like creating disk, mounting disk, unmounting disk, create file, open file (in read ,write or append mode), delete file, close file, list of open files.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Inode based file system

It is a virtual file system runs on top of the Linux file system.

Prerequisites

  • The size of virtual disk is 512 MB.
  • code is written with respect to linux file system and path hierarchy.

You need to install GNU g++ compiler.

sudo apt-get install g++

Installation

run makefile in the respective directory where source files are present.

To run project

./ibfs

About

Implemented Inode based virtual file system on top of the Linux file system. User can perform all the operations which are basically supported by Linux ext2 file system like creating disk, mounting disk, unmounting disk, create file, open file (in read ,write or append mode), delete file, close file, list of open files.


Languages

Language:C++ 99.5%Language:Makefile 0.5%