File Systems: Structure, Management, and Optimization
Posted by miko_rodri and classified in Technology
Written at on English with a size of 5.7 KB.
1. Non-Volatile Memory
Non-volatile memory retains stored information even when not powered. It is used for secondary storage or long-term persistent storage. Examples include:
- CD
- Hard Disk (similar reading and writing time)
- Solid-State Drive (SSD): No moving mechanical components, no difference for sequential vs. random reading, but a significant difference between reading and writing.
- ROM
- Flash Memory
- Magnetic Tape: Natural sequential reading and writing, suitable for backups.
2. File System
A file is a contiguous logical address space that can be written to, read from, opened, closed, and deleted. It has the following attributes:
- Name
- Unique ID
- Type
- Location
- Size
- Protection
- Date
Information about files is stored in file system structures.
3. Directory
A directory... Continue reading "File Systems: Structure, Management, and Optimization" »