...
/Introduction to File System Implementation
Introduction to File System Implementation
This lesson introduces the contents of this chapter: the implementation of a simple file system.
We'll cover the following...
In this chapter, we introduce a simple file system implementation, known as vsfs (the Very Simple File System). This file system is a simplified version of a typical UNIX file system and thus serves to introduce some of the basic on-disk structures, access methods, and various policies that you will find in many file systems today.
The file system is pure software. Unlike our development of ...