MultiDrive – free backup, clone & wipe disk utility from Atola Technology

All times are UTC - 5 hours [ DST ]




Post new topic Reply to topic  [ 5 posts ] 
Author Message
 Post subject: How-to: recover a failed Lacie Big Extreme
PostPosted: December 1st, 2012, 7:14 
Offline

Joined: December 1st, 2012, 4:34
Posts: 3
Location: France
Hi
I just recovered a failing Lacie Big Extreme 1To external disk.
Lacie Big Extreme 1To is a 2x500Go RAID0 external drive.
The issue was a clicking sound when powered up.
The steps are the following:
- Remove the HDD1 of the Lacie Big Extreme (the one next to the connectors)
- Take a 'dd' of this disk = dd1.img
- Remove the HDD2 of the Lacie Big Extreme (the other one)
- Take a 'dd' of this disk = dd2.img

Then you need to rebuild the RAID0 array which is very simple once you know the strip size, which is 256kb.
Here is the script to help you rebuild the RAID0 and which will create a alldd.img file that you will have to mount normally;

Quote:
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# deinterlace.py
#
# INTENT = This is a script for deinterlacing two raw dd images
# taken from a failed RAID 0 array into one "valid" image file
# that we hope to be able to recover data from.
#
# This is strictly experimental.
#
# Thursday, May 1, 2008 -Simón A. Ruiz
#

inputFiles = [open("dd1.img","rb"),open("dd2.img","rb")]
outputFile = open("alldd.img","wb")
chunkSize = 262144

# And, so as not to have to figure this out every time through the loop...
numFiles = len(inputFiles)

i = 0
while True:
nextChunk = inputFiles[i%numFiles].read(chunkSize)
if not nextChunk:
print 'Done! No more data.'
break
outputFile.write(nextChunk)
i += 1

outputFile.close()
for file in inputFiles:
file.close()


Once the script has done its work, just mount the dd image using:
Code:
kpartx -d alldd.img


The overall process takes approximatively 2 days (1/2 for each 500Go dd images, and 1 day to rebuild the RAID0.
Good luck!


Top
 Profile  
 
 Post subject: Re: How-to: recover a failed Lacie Big Extreme
PostPosted: December 1st, 2012, 9:12 
Offline

Joined: November 6th, 2006, 6:58
Posts: 1752
That might be good, but do not forget it will only work in some circumstances like your, and normally every case is a difference case.


Top
 Profile  
 
 Post subject: Re: How-to: recover a failed Lacie Big Extreme
PostPosted: December 1st, 2012, 9:56 
Offline

Joined: December 1st, 2012, 4:34
Posts: 3
Location: France
For sure for this one it was good. I completely agree with you. But as you can see I specified that the issue was a clicking sound (power issue I guess or electronic issue in the MB of this enclosure) but the disks were in good health.
Also, I did not write this little script and others have succeeded, so it will work in some cases ... if you have the right chunk size! but 256kb is the good size for Lacie Big Extreme disks.
Thanks!


Top
 Profile  
 
 Post subject: Re: How-to: recover a failed Lacie Big Extreme
PostPosted: December 1st, 2012, 19:24 
Offline
User avatar

Joined: September 8th, 2009, 18:21
Posts: 16955
Location: Australia
@strus_fr, very nice work and many thanks for sharing.

_________________
A backup a day keeps DR away.


Top
 Profile  
 
 Post subject: Re: How-to: recover a failed Lacie Big Extreme
PostPosted: December 1st, 2012, 19:29 
Offline

Joined: November 29th, 2006, 10:08
Posts: 7864
Location: UK
Yes, nice work. :-)

_________________
PC Image Data Recovery
http://www.pcimage.co.uk

New!! HDD-PCB.COM for all your PCB and donor HDD requirements!


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 5 posts ] 

All times are UTC - 5 hours [ DST ]


Who is online

Users browsing this forum: No registered users and 22 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group