This document discusses disk storage systems and disk scheduling algorithms. It describes how disks are organized into logical blocks mapped to physical sectors. The operating system is responsible for scheduling disk requests to minimize seek time and maximize bandwidth. Common disk scheduling algorithms described include first-come, first-served (FCFS); shortest seek time first (SSTF); SCAN; circular SCAN (C-SCAN); and circular look (C-LOOK). SSTF and SCAN tend to perform best in different situations depending on request patterns, and the algorithm can be changed if needed.