Compaq Presario Boot Failure: A Retrospective Diagnosis

I recently dug up an old story that still bugs me: back in the mid-2000s, I bought a Compaq Presario V3149AU (AMD Turion 64 X2, 1GB RAM, 120GB HDD, Windows XP MCE). It arrived, I powered it on, it went through initial setup, then froze. After a forced restart, it never even showed the POST screen again. The DVD drive LED kept blinking, but there was no disc inside. The vendor swapped it out, but I’ve always wondered what actually failed.

Looking back with today’s knowledge, what do you think caused that? Could it be a corrupt BIOS? Compaq often stored BIOS data on a hidden HDD sector—so a dead drive might have killed the BIOS. Or maybe a loose RAM stick, a fried motherboard, or a bad optical drive hanging the boot sequence. No beeps from the speaker to guide us, which was frustrating.

I’m curious how this community would have diagnosed it step by step. Would you have opened it up and reseated RAM, tried a CMOS battery pull (hard on a laptop), or swapped the hard drive? Given the symptoms, what’s your best guess?

Classic case. I’ve seen this exact behavior on Compaqs of that era. The blinking DVD drive with no disc is a tell: the controller is hunting for a bootable device and getting stuck. Since POST never came back after the forced shutdown, I’d lean towards a hardware failure triggered during initial setup—maybe a voltage spike or a component that was already marginal.

Compaq’s practice of embedding BIOS in a hidden HDD partition was notorious. If the HDD had a head crash or bad sector right in that area, the BIOS would be unreadable. That would explain why it booted once (HDD was readable) and then died (the sector failed after a write). Without the BIOS, no POST, no video, just a drive controller polling endlessly.

But don’t rule out RAM. Laptops of that time often had RAM seated loosely. A bump during shipping could dislodge it just enough—first boot okay, then heat expansion broke contact. Or a cold solder joint on the motherboard that gave out. The lack of beeps suggests the CPU or chipset didn’t even initialize.

If I had that machine today, I’d pull the HDD and try booting from a USB or CD after disconnecting the internal drive. Also, removing the WiFi card and battery, holding the power button for 30 seconds to drain residual charge, and then trying with only one RAM stick. Those steps would isolate the culprit without replacing anything.

Reading through this again, FixItFelix hit the nail on the head with the hidden HDD BIOS partition theory. Compaq’s implementation of what was essentially a Phoenix BIOS stored in a protected area of the drive (often the first few tracks, outside the normal partition table) was a notorious single point of failure. The fact that the DVD drive kept blinking with no disc is the classic symptom of a system that has lost its boot vector entirely — the BIOS firmware in the SPI flash would still be intact enough to initialize the SATA/IDE controller, but without a valid master boot record or BIOS extension loaded from the HDD’s hidden sector, it cycles through possible boot devices and hangs.

One thing I’d add: this specific failure mode (first boot works, then dead after a forced shutdown) strongly suggests a write failure during initial setup. Windows XP setup writes to the boot sector and the BIOS partition concurrently. If the HDD had a weak sector in that region — maybe from a head slap during shipping — the write would succeed partially, but the next read would fail, corrupting the reference the BIOS needs to pass control to the OS. A head crash or a bad sector in that precise location would leave the BIOS looking for a valid signature that no longer exists.

Modern diagnostic techniques, like attaching a POST card to the mini-PCI or LPC bus, would show you exactly where the boot process halts. But for vintage Compaqs, I’d follow this sequence:

  1. Remove the hard drive entirely.
  2. Pull the CMOS battery, hold power button for 60 seconds, then replace only one known-good RAM stick.
  3. Try booting from a known-good Windows XP CD (not the recovery disc, just a retail disc).
  4. If still no POST, test the power rails with a multimeter — a failed capacitor on the voltage regulator module can cause the CPU to never receive its core voltage, which matches the “no beeps” symptom.

The blinking DVD drive is a red herring; it’s just the default fallback behavior. The real failure is most likely a corrupted BIOS partition on the HDD or a marginal component that died under thermal stress during first boot.

One more nuance: Compaq’s “system restore” function required a pre-set key combination (like F10 or Ctrl+F10) during POST, but POST never initialized, so that path was dead too. The lack of any audible error codes (no beeps at all) points to a failure before the POST handler even runs — the CPU or chipset never signalled the speaker driver. I’ve seen similar on other laptops where a bulged capacitor on the output side of the DC-DC converter robbed the CPU of its 1.3V rail. That would explain the “works once, then never again” pattern: the cap was marginal, heated up during first boot, expanded, and failed short, killing the rail permanently.

So if I had to put money on it, my guess is a combination of a marginal capacitor on the motherboard (most likely a 6.3V 1500µF near the CPU socket) and a coincidental weak sector on the HDD’s BIOS partition. The first boot worked because both were barely alive; the forced shutdown stressed the capacitor past its limit, while the setup write nuked the BIOS signature. Double whammy.

Below is a quick diagnostic flowchart summarizing the recommended isolation steps:

flowchart TD
    A[Compaq Presario: No POST, blinking DVD drive] --> B{Remove HDD and try to boot from CD/USB}
    B -->|Still no POST| C{Reseat RAM, one stick, known-good}
    C -->|Still no POST| D{Clear CMOS: battery removal + power drain}
    D -->|Still no POST| E{Check motherboard voltages with multimeter}
    E -->|CPU Vcore missing| F[Replace failed capacitor on VRM]
    E -->|All rails present| G[Likely dead chipset or CPU - replace motherboard]
    B -->|Now POSTs| H[Corrupted BIOS partition on original HDD]
    H --> I[Replace HDD, restore BIOS via vendor disk if possible]

That covers the most likely scenarios. The lack of beeps really narrows it down to either a power delivery issue or a completely dead CPU/chipset, and given the thermal history, I’d inspect that VRM area first with a bright flashlight. Good discussion — brings back memories of salvaging these machines from the e-waste pile.