3.3 Storage Media & Drive Technologies

Key Takeaways

  • Volatile memory (RAM) requires constant power to sustain data states, whereas non-volatile storage media (HDDs, SSDs, optical discs) preserve data permanently across system power cycles.
  • Mechanical Hard Disk Drives (HDDs) utilize spinning magnetic platters and moving actuator arms (5,400 or 7,200 RPM), resulting in physical seek latencies, file fragmentation, and susceptibility to mechanical shock.
  • Solid-State Drives (SSDs) utilize non-volatile NAND flash memory; M.2 NVMe drives communicate directly over PCIe lanes to deliver multi-gigabyte throughput and over 1,000,000 IOPS, bypassing the ~600 MB/s bottleneck of legacy SATA interfaces.
  • Storage deployment models range from Direct-Attached Storage (DAS) for dedicated local host access to Network-Attached Storage (NAS) appliances providing centralized, multi-client file sharing and hardware redundancy across IP networks.
Last updated: September 2026

3.3 Storage Media & Drive Technologies

Quick Answer: Computer storage is categorized into volatile memory (RAM, which loses contents upon power loss) and non-volatile secondary storage (HDDs, SSDs, optical media, flash drives, which retain data indefinitely). While mechanical Hard Disk Drives (HDDs) offer low-cost per gigabyte through magnetic platters, Solid-State Drives (SSDs) eliminate moving parts using NAND flash memory. M.2 NVMe PCIe drives represent the peak of modern internal storage performance, delivering speeds exceeding 7,000 MB/s.

Every computing environment depends on secondary storage systems to persist operating systems, business applications, databases, and user files. For technical support professionals and system administrators, understanding the performance trade-offs, underlying physics, interface protocols, and physical form factors of modern storage media is a core domain tested on the CompTIA Tech+ exam.


Volatile vs. Non-Volatile Storage & The Memory Hierarchy

Computer storage is divided by how memory cells respond to electrical power state changes:

  • Volatile Storage: Memory that requires continuous electrical voltage to maintain its stored binary bits. When electrical power is switched off or interrupted, the electrostatic charge stored in volatile memory cells rapidly dissipates, resulting in the instantaneous loss of all stored data. System RAM (DDR4/DDR5) and CPU caches (L1/L2/L3) are volatile.
  • Non-Volatile Storage: Storage technologies that retain recorded binary data permanently, with or without an active electrical power supply. Data remains preserved on the physical medium through magnetic alignments, trapped electrical charges in floating-gate transistors, or optical surface pits until intentionally rewritten or erased. Solid-state drives, mechanical hard drives, optical discs, and USB flash memory are non-volatile.

The Computer Memory and Storage Hierarchy

System storage is structured as a hierarchical pyramid balancing speed (latency), cost per gigabyte, and capacity:

[ Fastest / Highest Cost / Lowest Capacity ]
           ▲   CPU Registers (<1 ns, ~1 KB)
           │   L1 / L2 / L3 CPU Cache (1-15 ns, 32 KB - 96 MB)
           │   System RAM (50-80 ns, 16-128 GB)
           │   NVMe PCIe Solid-State Drives (10-50 µs, 500 GB - 8 TB)
           │   SATA Solid-State Drives (50-100 µs, 500 GB - 8 TB)
           │   Mechanical Hard Disk Drives (10-15 ms, 1 TB - 24 TB)
           ▼   Optical Discs & Tape Archival Media (Seconds - Minutes)
[ Slowest / Lowest Cost / Highest Capacity ]

Magnetic Hard Disk Drives (HDDs)

Traditional Hard Disk Drives (HDDs) are electromechanical data storage devices that store binary data magnetically on rapidly rotating rigid disks called platters.

Internal Mechanical Anatomy

  • Platters: Circular aluminum, glass, or ceramic disks coated with a microscopic magnetic thin-film layer. Data bits are recorded by magnetically polarizing microscopic domains on the platter surface (representing binary 0s and 1s).
  • Spindle Motor: High-precision motor that spins the stacked platters at a constant rotational velocity.
  • Read/Write Heads: Microscopic electromagnetic transducers mounted on an aerodynamic slider at the tip of an actuator arm. The head does not physically touch the platter surface during operation; instead, it "flies" on a microscopic cushion of air (a few nanometers thick) generated by the spinning platter.
  • Voice Coil Actuator: An electromagnetic actuator that rapidly moves the arm assembly radially across the platter surface to position the heads over specific concentric circular tracks.

Spindle Speeds & Mechanical Latency

HDD performance is primarily governed by mechanical rotational speed, measured in Revolutions Per Minute (RPM):

  • 5,400 RPM: Common in budget consumer laptops, low-power external backup drives, and surveillance storage arrays. Generates less heat and consumes less power, but achieves modest sequential transfer rates (~100 to 140 MB/s).
  • 7,200 RPM: The standard speed for desktop performance hard drives, networked storage appliances (NAS), and enterprise servers. Delivers higher sequential throughput (~150 to 250 MB/s).
  • 10,000 / 15,000 RPM: Ultra-high-speed mechanical drives historically used in enterprise server SAS (Serial Attached SCSI) environments, now largely replaced by solid-state drives.

Latency Factors & Disk Fragmentation

Accessing data on an HDD incurs physical mechanical delays:

  1. Seek Time: The time required for the mechanical actuator arm to physically move the read/write head to the designated track (typically 4 to 9 milliseconds).
  2. Rotational Latency: The time spent waiting for the spinning platter to rotate the targeted sector underneath the stationary head (at 7,200 RPM, average rotational latency is roughly 4.16 milliseconds).
  3. Total Access Latency: Mechanical HDDs require 10 to 15 milliseconds to access random data blocks.
  • Fragmentation: Over time, as files are created, modified, and deleted, the operating system is forced to scatter pieces of a single file across non-contiguous physical sectors across the platters. When reading a fragmented file, the mechanical actuator arm must physically seek back and forth across tracks, dramatically slowing read performance. Disk defragmentation software reorganizes data blocks into contiguous physical sectors, minimizing mechanical head movements.
  • Mechanical Vulnerability: Because read/write heads fly nanometers above spinning platters, an external physical drop, shock, or vibration can cause the head to collide with the spinning platter. This catastrophic physical failure is known as a head crash, which permanently gouges the magnetic coating and destroys stored data.

Solid-State Drives (SSDs) & NAND Flash Architecture

Solid-State Drives (SSDs) contain no moving mechanical parts. Instead of spinning magnetic platters, SSDs store binary data electronically inside non-volatile semiconductor memory chips called NAND flash memory.

NAND Flash Cell Architectures

NAND flash cells trap electrical electrons inside insulated microscopic floating gates or charge-trap transistors. Cells are categorized by how many binary bits they store per physical cell:

Cell TypeBits per CellRelative PerformanceWrite Endurance (P/E Cycles)Typical Application
SLC (Single-Level Cell)1 bitFastest / Lowest Latency~50,000 to 100,000 cyclesMission-critical enterprise servers and industrial control systems
MLC (Multi-Level Cell)2 bitsHigh performance~3,000 to 10,000 cyclesHigh-end enthusiast workstations and professional video recorders
TLC (Triple-Level Cell)3 bitsModerate performance~1,000 to 3,000 cyclesMainstream consumer desktops, gaming PCs, and business laptops
QLC (Quad-Level Cell)4 bitsLower write speeds~300 to 1,000 cyclesHigh-capacity budget consumer SSDs and read-heavy archive drives

SSD Management: Wear Leveling & The TRIM Command

  • Program/Erase (P/E) Cycles: Flash memory cells wear out over time as electrical charges repeatedly tunnel through their insulating oxide layers. To prevent certain cells from failing prematurely, the SSD's onboard flash controller executes Wear Leveling algorithms, dynamically distributing write operations evenly across all physical flash blocks.
  • The TRIM Command: In mechanical hard drives, deleting a file merely marks its sectors as "free" in the file system directory without wiping the data. However, NAND flash cells cannot overwrite existing data directly; they must erase an entire block of pages before rewriting new data (an issue known as Write Amplification). The operating system issues the TRIM command to inform the SSD controller which data pages are no longer valid, allowing the drive to wipe stale blocks in the background (garbage collection), maintaining peak write speeds over the drive's operational life.

Exam Trap: Traditional manual defragmentation is not an SSD performance fix. SSDs do not incur the mechanical seek penalty of HDDs, and needless rewriting consumes flash endurance. Let the operating system identify and optimize the media; its storage-optimization feature normally issues TRIM for an SSD, while it may occasionally reorganize data for a specific filesystem or snapshot-management reason.

SSD Interfaces & Form Factors: SATA vs. M.2 NVMe

Modern SSDs fall into two primary architectural categories based on their physical connection and logical protocol:

  1. 2.5-Inch SATA SSDs: Encased in a metal or plastic 2.5-inch drive enclosure identical in size to a laptop hard drive. Connects via standard SATA data and power cables.
    • Bus & Protocol: Communicates across the SATA III (6 Gbps) bus using the legacy AHCI (Advanced Host Controller Interface) protocol.
    • Speed Limit: Maximum theoretical throughput is capped at 600 MB/s, with real-world sequential speeds maxing out at ~550 to 580 MB/s.
  2. M.2 NVMe PCIe SSDs: Compact bare circuit boards measuring roughly 22 mm wide by 80 mm long (the M.2 2280 form factor) that install directly into specialized motherboard slots without external cables.
    • Bus & Protocol: Bypasses the slow SATA bus entirely, connecting directly to the CPU across four PCIe lanes (PCIe x4) using the high-speed NVMe (Non-Volatile Memory Express) protocol.
    • Speed Performance: PCIe 3.0 NVMe drives achieve ~3,500 MB/s; PCIe 4.0 NVMe drives reach ~7,000 to 7,500 MB/s; and PCIe 5.0 drives exceed 14,000 MB/s.
    • IOPS (Input/Output Operations Per Second): While a 7,200 RPM mechanical hard drive delivers roughly 75 to 100 IOPS and a SATA SSD delivers ~90,000 IOPS, an enterprise PCIe 4.0/5.0 NVMe drive delivers over 1,000,000 IOPS, processing massive database transactions and concurrent requests with negligible queue delays.
Storage MetricMechanical HDD (7,200 RPM)2.5-inch SATA SSDM.2 NVMe PCIe 4.0 SSD
Moving PartsYes (Platters, Spindle, Arm)None (Silicon Flash)None (Silicon Flash)
Sequential Read Speed~150 - 250 MB/s~550 MB/s (SATA III limit)~7,000 - 7,500 MB/s
Random 4K IOPS75 - 100 IOPS~90,000 IOPS800,000 to 1,200,000+ IOPS
Average Access Latency10 - 15 milliseconds (ms)50 - 100 microseconds (µs)10 - 30 microseconds (µs)
Physical Shock ResistanceVulnerable to head crashesHighly durableHighly durable
Routine media optimizationDefragmentation can reduce mechanical seeksLet the OS optimize the drive, normally with TRIMLet the OS optimize the drive, normally with TRIM

Optical Storage Media

Optical storage media store binary data using microscopic indentations (pits) and flat reflective surfaces (lands) stamped or burned into a polycarbonate plastic disc substrate. A solid-state laser beam reflects off the spinning disc, and an optical photodiode sensor interprets the differences in light reflection as binary 1s and 0s.

The Three Primary Optical Standards

Optical media capacity is governed by the wavelength of the laser used: shorter laser wavelengths produce a tighter light focus, enabling microscopic pits to be packed closer together on the disc surface.

  1. Compact Disc (CD):
    • Laser: 780 nm infrared laser.
    • Standard Capacity: 700 MB (equivalent to 80 minutes of uncompressed audio).
  2. Digital Versatile Disc (DVD):
    • Laser: 650 nm red laser.
    • Capacities:
      • Single-Layer (DVD-5): 4.7 GB
      • Dual-Layer (DVD-9 / DVD-DL): 8.5 GB
  3. Blu-ray Disc (BD):
    • Laser: 405 nm blue-violet laser (dramatically shorter wavelength allowing ultra-dense data tracks).
    • Capacities:
      • Single-Layer (BD-25): 25 GB
      • Dual-Layer (BD-50): 50 GB
      • Triple/Quad-Layer BDXL: 100 GB to 128 GB

Optical Media Classifications

  • -ROM (Read-Only Memory): Factory-pressed commercial media (e.g., CD-ROM, DVD-ROM, BD-ROM). Data is permanently molded into the substrate during manufacturing and cannot be modified or erased.
  • -R (Recordable): Write-once media (e.g., CD-R, DVD-R, BD-R). A high-power drive laser burns dark spots into an organic dye layer. Once burned, the data is permanent and cannot be deleted or rewritten.
  • -RW / -RE (Rewritable / Recordable Erasable): Rewritable media (e.g., CD-RW, DVD-RW, BD-RE). Utilizes a phase-change chemical alloy layer that can be altered between crystalline (reflective) and amorphous (dark) states by the laser, allowing data to be erased and rewritten hundreds of times.

Removable Flash Media

Removable flash memory cards and external drives provide portable, non-volatile data exchange across mobile devices, cameras, and workstations.

USB Flash Drives

Commonly referred to as thumb drives or jump drives, USB flash drives combine a NAND flash memory chip, an integrated flash controller, and a Universal Serial Bus connector (USB Type-A or USB Type-C) in a pocket-sized package. They function as portable mass storage devices supported natively by all modern operating systems without third-party device drivers.

Secure Digital (SD) & MicroSD Cards

SD memory cards are the universal removable storage standard for digital cameras, smart drones, audio recorders, mobile phones, handheld gaming consoles, and single-board computers (such as the Raspberry Pi).

  • Capacity Formats:
    • Standard SD: Up to 2 GB (formatted with FAT16).
    • SDHC (High Capacity): 2 GB to 32 GB (formatted with FAT32).
    • SDXC (eXtended Capacity): 32 GB to 2 TB (formatted with exFAT).
    • SDUC (Ultra Capacity): 2 TB up to 128 TB (exFAT).
  • Physical Form Factors: Standard full-size SD (32 × 24 mm) and MicroSD (15 × 11 mm). MicroSD cards can be inserted into passive mechanical plastic adapters to fit full-size SD slots.
  • Speed Class Classifications:
    • Speed Class: Class 2, 4, 6, 10 (Class 10 = minimum 10 MB/s sequential write).
    • UHS (Ultra High Speed): U1 (minimum 10 MB/s), U3 (minimum 30 MB/s, required for 4K video recording).
    • Video Speed Class: V30 (30 MB/s), V60 (60 MB/s), V90 (90 MB/s for 8K video capture).
    • Application Performance Class: A1 and A2 ratings certify minimum random read/write IOPS thresholds for running software applications directly from the card.

Local Network & Cloud Storage

A file server is a general-purpose server running file-sharing services such as SMB or NFS. It can also run other server applications, and administrators manage its operating system, storage, permissions, patches, and backups. A Network-Attached Storage (NAS) device is a purpose-built storage appliance that provides similar network file shares through a storage-focused interface. Both are local network storage, but a file server emphasizes flexible server roles while a NAS emphasizes managed shared storage. A cloud storage service keeps data on a provider's remote infrastructure and is reached through an internet-connected application, sync client, or web interface; availability then depends on credentials, connectivity, and the provider as well as the local device.

Storage Topologies: DAS vs. NAS

Storage solutions are deployed according to how client computers connect to the underlying drive hardware:

Direct-Attached Storage (DAS)

Direct-Attached Storage (DAS) refers to any non-volatile storage media connected directly to a single host computer without passing through a network switch.

  • Examples: Internal SATA hard drives, internal M.2 NVMe SSDs, external USB thumb drives, and external multi-drive enclosures connected via Thunderbolt or USB 3.2.
  • Advantages: Fastest access speeds, ultra-low latency, plug-and-play installation, and requires no local network infrastructure.
  • Disadvantages: Storage is isolated to a single computer. If another workstation on the network needs access to a file stored on a DAS drive, the primary host computer must be powered on and configured to share the drive across the local network.

Network-Attached Storage (NAS)

Network-Attached Storage (NAS) is a dedicated computing appliance containing one or more drive bays that connects directly to a Local Area Network (LAN) via Ethernet or Wi-Fi.

  • Architecture: A NAS appliance contains its own embedded low-power processor, RAM, and a specialized operating system (often Linux-based, such as Synology DSM or TrueNAS). The physical drives are configured in multi-drive redundant arrays (RAID).
  • Network Protocols: A NAS provides file-level storage access across heterogeneous client operating systems using standard network file sharing protocols:
    • SMB/CIFS (Server Message Block / Common Internet File System): Native standard for Windows environments.
    • NFS (Network File System): Standard protocol for Linux and UNIX systems.
    • AFP (Apple Filing Protocol): Legacy sharing protocol for macOS systems.
  • Advantages: Centralized data repository, multi-user concurrent access, centralized user authentication and permissions, automated scheduled workstation backups, and hardware fault tolerance.
FeatureDirect-Attached Storage (DAS)Network-Attached Storage (NAS)
Connection InterfaceDirect cable (SATA, NVMe, USB, Thunderbolt)Local Area Network (RJ-45 Ethernet, Wi-Fi)
Primary HostSingle dedicated computerShared across all authorized network clients
Data Sharing LevelBlock-level local drive accessFile-level network protocol sharing (SMB, NFS)
Operating IndependenceInaccessible if the host computer is shut downStandalone appliance operating 24/7 independently
Best Use CaseLocal OS boot drive, high-speed video editing scratch diskCentralized office file sharing, automated multi-PC backups

Real-World Troubleshooting & Practical Scenarios

Scenario 1: Video Editing Playback Bottleneck

  • Symptoms: A graphic designer attempts to edit uncompressed 4K multicam video footage stored on an external 4 TB 5,400 RPM USB hard drive. During playback in Adobe Premiere, video frames constantly drop, the audio desynchronizes, and the storage disk activity monitor remains pegged at 100% with average response times exceeding 85 milliseconds.
  • Root Cause Analysis: The mechanical 5,400 RPM drive is limited to roughly 120 MB/s sequential transfer speeds and ~80 IOPS. Streaming four concurrent uncompressed 4K video streams requires over 600 MB/s of continuous throughput and rapid random access.
  • Resolution: Migrate the active video project files to an internal M.2 NVMe PCIe SSD (delivering over 5,000 MB/s and 800,000 IOPS). Playback becomes completely smooth with 0% dropped frames. The mechanical external drive is repurposed for completed project archiving.

Scenario 2: Small Business Collaborative Workflow

  • Symptoms: An accounting firm with 10 employees stores critical client tax spreadsheets on an external USB hard drive plugged into the office manager's desktop. Whenever the office manager shuts down their computer to leave for lunch or travel offsite, the remaining nine accountants lose all access to client files and cannot work.
  • Resolution: Deploy a 4-bay Network-Attached Storage (NAS) appliance connected directly to the office Gigabit Ethernet switch, populated with four 7,200 RPM enterprise hard drives in a fault-tolerant RAID array. The NAS operates 24/7 independently of any individual workstation, provides authenticated SMB file shares to all 10 employees simultaneously, and performs automated encrypted backups to offsite cloud storage.
Loading diagram...
Data Storage Hierarchy, Interface Protocols & Network Topologies
Test Your Knowledge

A desktop user notices that opening large database files on an older mechanical hard disk drive (HDD) has become progressively slower. Which maintenance action can reduce mechanical seek time, and why is that same manual action normally inappropriate for an SSD?

A
B
C
D
Test Your Knowledge

An archival specialist needs to back up a 22 GB high-definition video master onto a single optical disc. Which optical media format provides sufficient native storage capacity on a single layer without requiring dual-layer media?

A
B
C
D
Test Your Knowledge

Which architectural feature explains why an M.2 NVMe solid-state drive achieves sequential read speeds exceeding 7,000 MB/s, whereas a 2.5-inch SATA SSD is capped at approximately 550 to 580 MB/s?

A
B
C
D
Test Your Knowledge

A creative agency with twelve video editors requires a central storage solution where all editors can simultaneously access shared video assets, project libraries, and automated backup shares over the local office Gigabit Ethernet network with centralized user access permissions. Which storage topology satisfies these operational requirements?

A
B
C
D