Penguin
Annotated edit history of MinixFS version 4, including all changes. View license author blame.
Rev Author # Line
2 StuartYeates 1 The Minix FileSystem was the file system used by [Minix], and was described in "Operating Systems: Their design and implementation" by AndrewTannenbaum.
1 PerryLorier 2
3 The Minix file system had a number of limitations:
4 * It couldn't address partitions larger than 64mb
5 * It had a maximum limit of 32 chars on filenames
2 StuartYeates 6 * etc
1 PerryLorier 7
2 StuartYeates 8 The Minix File system was used a lot on floppies where it's overhead was low. It's design also leant itself to being a file within the FileSystem of the host OperatingSystem when Minix was run as a process within another OperatingSystem.
3 CraigBox 9
10 ----
4 CraigBox 11 CategoryFileSystem %%%
3 CraigBox 12 CategoryInodeFileSystem