Disk and Memory Characteristics
Disks
|
|
Physical organization
- A disk is a set of platters.
- Each platter has a sequence of tracks.
- Each track has a sequence of sectors.
- Sector size is typically 4k or 8k bytes.
To access data at (p, t, s)
- Move arm to track t.
- Wait for sector s to rotate under head.
- Read or write sector on the platter p.
- Multiple adjacent sectors can be read or written without repeating
steps 1-2 for each.
|
|