How i fix my WD My Book Live 3TB

  • 27 Aug, 2016

Two days ago my NAS WD My Book Live  died. I think because an energy problem.  I bought an USB to SATA adapter and follow the instructions bellow.

The steps worked for a My Book Live 3TB. You need to open and disassembly and extract the HD.  If data partition is not ok, you will loose all data.

  1. Download the virgin disk image (02.41.05-034) (203MB) from

https://mega.co.nz/#!FZkASQ6T!P3DMWzaOn62jSrG4SECtIDeJeLYEdmz6w6kR9it8U68599

  1. Extract with 7-zip and you should have a file called mybook3tb.img http://www.7-zip.org/download.html208

  2. Format an 8GB+ thumbdrive or external usb hard drive to NTFS and copy mybook3tb.img to it

  3. Download SystemRescueCd and burn it to a CD http://www.sysresccd.org/Download658

  4. Shut down your computer and remove the cable from your computers hard drive so we don’t erase it by mistake  ### Verify your discs on gparted before proceed and write down the names of /dev/sd…  ####

  5. Hook up your MyBookLive to a SATA port on your motherboard or buy an eSATA to SATA cable or dock and hook up the drive that way. You can try a USB to SATA cable but success rates vary

  6. Turn on your computer and tell it to boot from the CD drive

  7. When the system rescue cd menu comes up, select to “directly start the graphical environment”

  8. Open gparted and check to see where your MyBookLive shows under. In my case it shows up under /dev/sda The drive should contain several EXT3 partitions and a rather large EXT4 partition

If your drive shows up under sdb, sdc, sdd etc.  just substitute the proper name for the drive when getting to dd if=/mnt/usb/mybook3tb.img of=/dev/sda bs=1M (DON’T ENTER THIS COMMAND YET)

Now in gparted check to see where your thumbdrive shows up. In my case it shows up under /dev/sdb1 If it shows up under sdc1, sdd1, sde1, etc.  just substitute the proper name for the drive when getting to mount -t ntfs /dev/sdb1 /mnt/usb (DONT ENTER THIS COMMAND YET)

  1. In terminal type the commands below (Make sure you change sdb1 (For the thumbdrive or usb hard drive) and sda (for the MBL hard drive) to whatever they show up as in GPARTED)
mkdir /mnt/usb
mount -t ntfs /dev/sdb1 /mnt/usb
dd if=/mnt/usb/mybook3tb.img of=/dev/sda bs=1M
  1. Look for any errors in the terminal window (output should look similar to below) 4420+0 records in 4420+0 records out

  2. Logout of the SystemRescue CD and shut down the computer

  3. Hook up the pcb to the MyBookLive hard drive and screw it down with 2 screws for now and then hook up the ethernet and power cord and try booting the drive again without putting it back in the case

  4. Now from the dashboard do a Quick Factory restore to format the data partition

  5. When the quick factory restore is complete power down the MyBookLive

  6. Put the drive back together as you are done!

I copied from the link https://community.wd.com/t/guide-debrick-mybooklive-v2-0/58546

Related Posts

Error when run dnf install rpm-build

  • 31 Mar, 2025

I was installing the IBM MQ Server on a linux box yesterday. I got the error bellow: \root@gateway MQServer\ dnf install rpm-build
Updating Subscription Management repositories.
Instana 14 B/s |

Error when run dnf install rpm-buildRead More

How to Install watch on macOS Sequoia

  • 06 Feb, 2025

The watch command is a useful utility in Unix-like systems that allows you to execute a command periodically and display its output. However, macOS does not come with watch pre-installed. If you're ru

How to Install watch on macOS SequoiaRead More

rsync is faster than scp to copy files between machines

  • 31 Dec, 2024

rsync is generally faster than scp for copying files, especially when transferring a large amount of data or syncing directories. Here's why: 1. Incremental Transfers - rsync: Only transfers the p

rsync is faster than scp to copy files between machinesRead More