Storage Devices

8 min✏️ Quiz at the end

Where Bits Go to Sleep

RAM forgets everything at power-off — so every file you intend to keep needs a non-volatile home: a storage device. The engineering challenge is lovely to state: hold billions of binary 0s and 1s, reliably, for years, cheaply, and hand them back fast. Engineers have answered it several different ways, and the differences still shape what you buy.

Hard Disk Drives: Storing Bits as Magnetism

The hard disk drive (HDD) has anchored computing since the 1950s. Inside the sealed box: polished platters spinning at 5,400–7,200 revolutions per minute, coated in magnetic material. Each bit is a tiny patch magnetised one way or the other — two states, one bit, the same on/off idea as ever. A read/write head on a swinging arm floats nanometres above the surface, flipping patches to write and sensing them to read.

An HDD is genuinely mechanical — hence its personality:

  • The hum and click you hear from older computers: motors and arm
  • Slowness at scattered reads: fetching data from a thousand different spots means a thousand physical arm-swings and rotation waits — milliseconds each, an eternity in CPU time
  • Fragility in motion: knock a running drive and the head can hit the platter — a head crash, taking data with it
  • The killer virtue: cheap capacity. Terabytes for the price of a video game. Per gigabyte, magnetism remains the bargain.

Solid-State Drives: Storing Bits as Trapped Electrons

The solid-state drive (SSD) removes the machinery. Data lives in flash memory chips, where each cell traps a small charge of electrons (or doesn't) — charge or no charge, 1 or 0, held even without power. Reading and writing are purely electronic.

No motion transforms everything:

  • Speed — no spinning up, no arm-swinging; scattered reads that stall an HDD are effortless. This is the upgrade that turned old, wheezing laptops young again: the operating system boots in seconds because loading is storage-bound
  • Silence, low power, shock-resistance — nothing moves, nothing hums, drops are survivable
  • The cost: flash is pricier per terabyte, and each cell endures a large but finite number of rewrites (drives manage this wear automatically; typical users never notice)

Flash is also everywhere beyond SSDs: USB memory sticks, SD cards in cameras, and the storage inside every phone and tablet — the same trapped-electron trick at every size.

The Wider Family

  • Optical discs (CD/DVD/Blu-ray) store bits as microscopic pits read by laser — once king of music, film, and software boxes, now largely displaced by downloads, but excellent as cheap, durable, read-only archives
  • Magnetic tape — the dinosaur that refuses to die: slow to access (it must wind to the right spot — the ultimate linear search) but astonishingly cheap and long-lived, which is why the world's great archives and cloud providers still write their deep backups to tape

Choosing, and Backing Up

The comparison table engineers actually use:

SpeedCost per TBToughnessBest for
SSD / flash★★★££★★★everyday devices, speed
HDD£bulk capacity
Optical£★★ (shelf)fixed archives
Tapeslowestcheapest★★★ (decades)deep backup

One truth spans them all: every storage device eventually fails — mechanically, electronically, or via a dropped bag or a stolen rucksack. The defence is never a better device; it is copies. The classic 3-2-1 habit: about 3 copies of anything precious, on 2 different kinds of storage, 1 of them somewhere else (a drive at a relative's house, or cloud storage). Photos of your childhood are one spilled drink from oblivion, or one backup from immortality. Choose the backup.

Try It Yourself

Recommend storage (and justify it): a video editor needing 40 TB of raw footage archived cheaply; a gamer wanting instant load times; a photographer protecting ten years of family photos. Bonus: why do laptops no longer click and hum the way old ones did?

Worked Example — Diagnosing a "Slow Laptop"

A genuinely common real-world scenario: a five-year-old laptop feels painfully slow, and the owner is deciding whether to buy a new one. Before spending money, this lesson gives a specific, checkable hypothesis to test first: is the laptop still using an HDD?

If so, the single biggest real-world speed upgrade for an older machine is very often not a brand-new laptop at all, but swapping the HDD for an SSD — moving the operating system and programs from a mechanically slow device to an electronically fast one. Boot times that took a full minute can drop to seconds, because so much of "slow computer" experience is really the operating system waiting on storage to hand over files, not the CPU genuinely struggling to think. This is a concrete example of the layered diagnosis skill from hardware and software: before assuming the whole machine needs replacing, identify which specific layer is actually the bottleneck.

Why "Delete" Doesn't Always Mean Gone

One more storage subtlety worth knowing: when a file is "deleted" from most storage devices, the data itself is often not immediately erased — only the device's internal index entry pointing to it is removed, marking that space as "available to reuse". Until something else is written over that same physical location, specialised recovery software can sometimes retrieve the "deleted" file. This cuts both ways: it is genuinely useful when someone accidentally deletes something important (recovery is often possible, if done quickly and no new data has overwritten it) — and it is genuinely important to know when disposing of an old drive containing sensitive information, since simply deleting files or reformatting is not the same as securely erasing them. Properly wiping a drive before selling or recycling it requires deliberately overwriting its storage, not just deleting the files on it.

Key Words

  • Non-volatile — keeps data without power; the defining property of storage
  • HDD — magnetic spinning platters + moving read/write head; cheap capacity
  • SSD / flash memory — trapped-charge chips, no moving parts; fast and tough
  • Head crash / wear — the characteristic failure modes of HDD / flash
  • 3-2-1 backup — several copies, different media, one off-site