[GUIDE] Debrick a completely dead MyCloud
If your WD MyCloud appears completely dead—no web access, no SSH, possibly a blinking or solid LED—you can often recover it using a low-level serial connection and firmware reload. This process requires some basic hardware tools and patience.
What You’ll Need
USB-to-TTL serial adapter (3.3V, not 5V)
Jumper wires
A computer with serial terminal software (PuTTY, Tera Term, etc.)
Firmware files for your specific MyCloud model
A screwdriver to open the enclosure
Step 1: Open the Device
Unplug your MyCloud and carefully open the casing. Inside, locate the mainboard. You’re looking for a 3- or 4-pin serial header (usually labeled TX, RX, GND). These pins allow direct communication with the bootloader.
Step 2: Connect Serial Interface
Connect your USB-to-TTL adapter:
Adapter TX → Board RX
Adapter RX → Board TX
Adapter GND → Board GND
Do not connect VCC unless absolutely required.
Plug the adapter into your computer and open your terminal software with these settings:
Baud rate: 115200
Data bits: 8
Stop bits: 1
Parity: None
Step 3: Access the Bootloader
Power on the MyCloud while watching the terminal output. If everything is connected correctly, you should see boot messages.
Interrupt the boot process (usually by pressing a key like Ctrl+C). This gives you access to the bootloader (often U-Boot).
Step 4: Load Firmware via Network
To recover the system, you’ll need to push firmware via TFTP:
Set a static IP on your computer (e.g., 192.168.1.100).
Run a TFTP server and place the firmware image in its root folder.
In the bootloader, configure network settings:
setenv ipaddr 192.168.1.200
setenv serverip 192.168.1.100
Load the firmware into RAM:
tftp 0x800000 firmware.bin
Step 5: Flash the Firmware
Once the file is loaded successfully, erase the corrupted NAND sections and write the new firmware:
nand erase
nand write 0x800000 0x0 <filesize>
Be extremely careful here—incorrect commands can permanently brick the device.
Step 6: Reboot and Test
After flashing completes:
reset
If successful, the device should boot normally. The LED should stabilize, and you should regain access through the web interface.
Troubleshooting Tips
No serial output? Double-check TX/RX wiring.
Garbage text? Wrong baud rate.
TFTP fails? Disable firewall and verify IP settings.
Still dead? The NAND chip or power circuitry may be physically damaged.
Final Notes
Debricking a MyCloud is very doable if the hardware is intact. The key is accessing the bootloader and safely reflashing firmware. Take your time, double-check commands, and avoid rushing—most failures happen due to simple mistakes during flashing.
0コメント