Magnetic Storage
Part of Data Storage
An overview of the magnetic storage family — from tape to drum to disk — and how to choose between them for a rebuilding scenario.
Why This Matters
Magnetic storage is the most practical family of high-capacity persistent storage technologies for a civilization rebuilding computing capability. Unlike optical storage, which requires precision laser systems, or semiconductor flash memory, which requires advanced fabrication equipment, magnetic storage can be understood, maintained, and even constructed with industrial-era materials and modest electronics knowledge.
Every variant of magnetic storage — tape, drum, disk — works on the same underlying physics: ferromagnetic material retains a magnetization direction indefinitely without power, and a coil of wire moving through a changing magnetic field generates a measurable voltage. The differences are in geometry, access speed, capacity, and mechanical complexity.
This overview article helps you understand the full landscape and choose the right magnetic medium for each use case. In a resource-limited environment where you may have access to only certain salvaged equipment, matching the storage medium to the task avoids wasted effort and degraded performance.
The Common Thread: Ferromagnetic Oxide
All practical magnetic storage uses ferromagnetic oxide particles suspended in a binder and coated onto a substrate. The two most common oxides are:
Gamma-phase ferric oxide (γ-Fe₂O₃): The original magnetic recording medium, used since the 1930s. Red-brown in color. Coercivity around 200–350 Oersteds. Long-term stable, well-characterized, abundant in salvageable tapes.
Chromium dioxide (CrO₂): Higher coercivity (~450 Oersteds) than ferric oxide, enabling higher recording density. Used in Type II (high-bias) audio cassettes and some computer tapes. Requires higher recording current. Slightly less stable over decades than ferric oxide.
Metal particle (MP): Pure iron or iron-cobalt alloy particles, not oxide. Very high coercivity (~1,000–1,600 Oersteds), highest recording density, but more susceptible to corrosion. Found in high-end audio tapes and high-density computer backup cartridges.
Thin-film metallic coatings: Modern hard disks do not use particle coatings at all — they use sputtered metallic alloy thin films (cobalt-chromium-platinum alloys) only a few nanometers thick. These are not reproducible without advanced vacuum deposition equipment but are present in all salvaged hard drives.
Tape: Maximum Capacity, Sequential Access
Tape is the appropriate choice when:
- You need maximum storage per unit of material
- Access patterns are sequential (backup, archiving, batch processing)
- Transport mechanisms are acceptable (you are willing to build or salvage a tape drive)
- Long shelf life is more important than access speed
A single VHS cassette contains approximately 250 meters of tape. At even modest recording densities (1,000 bits per millimeter, 8 tracks), that represents about 250 MB of storage. The main limitation is strictly sequential access: to reach data stored near the end of a tape, you must scan past everything before it, potentially spending minutes.
Tape is best used as the archival tier — the bottom of the storage hierarchy where data is written once (or rarely) and retrieved infrequently. Entire database backups, archival copies of programs, historical records: these are tape’s natural domain.
The mechanical system for tape is moderate complexity: two reels with independent tension control, a capstan for precision speed, and a head assembly. Salvaging the complete transport mechanism from a cassette deck or VHS player avoids the need to build one from scratch.
Drum: Moderate Capacity, Fast Fixed-Head Access
The drum is appropriate when:
- You need random access without the precision mechanics of a disk drive
- Capacity of kilobytes to megabytes is sufficient
- You are building from scratch and want predictable, uniform access time
- You want heads that never crash (fixed gap, no flying required)
The drum’s key advantage over disk: there is no seeking. Every track has its own head, permanently positioned. Access time is purely rotational latency — at most one revolution period. This makes access time predictable and uniform, which simplifies system design.
The key disadvantage: capacity is limited by the number of heads (one per track) and the drum’s surface area. A drum with 64 heads and 1,000 sectors per track at 8 bits per sector holds 512 kilobytes — enough for a useful system but not for large databases or complex programs.
Drums were used as main storage in many 1950s–1960s computers. They are most suitable for a rebuild scenario where you need faster-than-tape access but cannot manufacture or repair disk drive air bearings.
Disk: Large Capacity, Random Access, Higher Complexity
The hard disk drive is the most capable and most complex magnetic storage device. One platter 3.5 inches in diameter can hold hundreds of gigabytes. Access time to any sector is measured in milliseconds. A standard ATA interface connects to virtually any microcontroller with a few kilobytes of firmware.
The disk is appropriate when:
- You have access to salvaged hard disk drives in working condition
- You need gigabyte-scale capacity
- You need fast random access for database or file system operations
- You can manage the environmental requirements (sealed, no shock, stable power)
The disk is less appropriate when:
- You are manufacturing storage from scratch (drum is simpler)
- The system will experience significant vibration or shock
- You cannot maintain sealed operation (dust is catastrophic)
In a rebuilding scenario, the strategy for disks is: use them while they last; don’t try to rebuild them from scratch. A salvaged disk drive encapsulates decades of precision manufacturing that would require extensive industrial infrastructure to reproduce. Treat them as finite consumables. When a disk fails, copy the data to tape or another disk immediately. Maintain backups.
Floppy Disk: The Bridge Medium
The floppy disk deserves mention as a middle ground between tape and hard disk. Using the same oxide-on-mylar coating as tape but in a circular disc format, floppy disks offer random track access (by moving the head) with no air bearing required (the head contacts the disk surface, which is why floppy disks wear out).
Floppy disks were manufactured in enormous quantities: billions of 8-inch, 5.25-inch, and 3.5-inch disks exist in the salvageable pool. Their capacity is modest (1.44 MB for a standard 3.5-inch HD floppy), but they are excellent for:
- Distributing programs between machines
- Saving working results from a session
- Bootstrapping a system (loading an operating system)
- Storing configuration data
Floppy drives are mechanically robust and widely salvageable. The head assembly is simpler than a hard disk (the head physically slides on a lubricated surface rather than flying). Replacement heads and drive mechanisms are widely available as spare parts.
Comparing the Technologies
| Property | Tape | Floppy | Drum | Hard Disk |
|---|---|---|---|---|
| Capacity | 100 MB–TB | 360 KB–1.44 MB | 64 KB–8 MB | 100 MB–10 TB |
| Access pattern | Sequential | Random | Random | Random |
| Access time | Seconds–minutes | 200–600 ms | 8–50 ms | 5–20 ms |
| Build difficulty | Moderate | Low (salvage) | High | Very high (salvage only) |
| Durability | Decades (stored) | Years (use wears surface) | Years | Years |
| Shock sensitivity | Low | Low | Medium | Very high |
| Power requirement | Low | Low | Medium | Medium |
Storage System Design
A practical storage system for a rebuilt computing facility uses multiple tiers:
Working storage: Hard disk or drum for the operating system, active programs, and current databases. Fast random access enables interactive use.
Near-line backup: Floppy disks or tape (automated) for recent backups. Copies made nightly or after significant work sessions.
Archival storage: Open-reel tape or VHS tape reels containing master copies of all programs and databases. Stored in a separate location, accessed only when the working storage fails.
Human-readable backup: Critical programs and datasets printed on paper and stored physically. Paper survives media degradation, does not require hardware to interpret, and can be re-entered if all machine-readable copies are lost.
This four-tier hierarchy provides defense in depth. Any single failure — a disk crash, a tape with sticky shed syndrome, a flood in the storage room — can be recovered from using the remaining tiers. Design your system so that the loss of any single tier is a nuisance rather than a catastrophe.