Partition Map Scheme - Unformatted. HELP.

Hi all -

I'm off to the shop to ask an expert in person this afternoon but I'm all about instant gratification so I thought I'd ask around and get a little more information before I go.

I have a perfectly good western digital external hard drive that earlier this week had a collapsed usb port. I took it in because the case needed to be replaced. Let me emphasize that prior to the usb port being messed up, the drive functioned fine (and is less than 6 mo. old). Even the morning that the port collapsed, when I plugged in the usb cord and held it just right, the volume would mount.

Fast foward, I take the HD in, they replace the chassis, everything works out fine. The computer guy calls me at some point to ask if I use a mac, I say yes.

When I picked up the HD yesterday evening the technician told me that he had successfully mounted the volume on mac and linux and the data was intact (naturally, since it was an issue with teh usb port, not the actual drive itself). I was relieved and took the drive home, ready to get back to work.

When I plugged it in, my computer gave me the dreaded "This Disk Can Not be Recognized by this computer (initialize/ignore/eject)" I quickly ignored the problem and opened disk utilities, where I got the following information:

Disk Description : WDC WD10 EADS-11M2B2 Media
Total Capacity : 931.5 GB (1,000,204,886,016 Bytes)
Connection Bus : USB
Write Status : Read/Write
Connection Type : External
S.M.A.R.T. Status : Not Supported
USB Serial Number : WDC WD10EA WD-WCAV57559890
Partition Map Scheme : Unformatted

What the **** is going on? It worked at the store on Mac and Linux, I take it on a short ten minute drive home, plug it in and BAM, it doesn't work.

Reformatting and erasing this data just isn't an option. I'm a wedding photographer and I back up my data every night. HOWEVER, on Sunday night, the backup failed. My wedding from Sunday is trapped on this drive and it's not an option to reshoot it. At this point I will pay any amount of money to recover the data...I don't even care about the drive...I just want my **** pictures.

Any insight from people with more expertise than I? I haven't touched the drive except to look at the info tab in disk utility. Other than that, nothing. It hasn't ever successfully mounted to my computer from the second I brought it home.

It's now sitting forlornly in the box; I'm afraid to touch it

I should also mention, this guy was a very reputable company...I did my research. 30 years experience, tons of referrals, BBB Preferred status, awards from the local paper for being the best repair store in town, etc etc etc.

iMac, Mac OS X (10.6.4)

Posted on Jul 14, 2010 8:08 AM

Reply
2 replies

Jul 15, 2010 10:36 AM in response to Katefen

& you should be double or triple backing up your files. Get a raid drive.

---------


Boot in safe mode. Hold down the shift key when powering on the machine. This will run a disk repair program. Boot up will take longer as the harddrive is scanned and repaired.
See this article:
http://docs.info.apple.com/article.html?artnum=107393


Or from mrtotes article :
Boot from the OS X Install disk and from the Menu Bar choose Disk Utility. Then run "Repair Disk" and "Repair Disk Permissions" on your hard disk.


Here the apple article on booting single user mode and using fsck. See the section on Use fsck:
http://docs.info.apple.com/article.html?artnum=106214


Perhaps Disk Warrior will be of some help:
http://www.alsoft.com/DiskWarrior/


"Stellar Phoenix Macintosh - Mac data recovery software, recovers data from damaged, deleted, or corrupted volumes and even from initialized disks."
They have a trial version, so I guess you can see if your data can be recovered...
http://www.stellarinfo.com/mac-data-recovery.htm


"Data Rescue II is the best data recovery software on the market for recovering files from a problem hard drive. Data Rescue II works when other tools fail. Data Rescue II is also completely safe to use since it does not attempt any risky repairs to the drive while its scanning."
http://www.prosofteng.com/products/data_rescue.php


FileSalvage is an extremely powerful Macintosh application for exploring and recovering deleted files from a drive or volume. FileSalvage is designed to restore files that have:
* been accidentally deleted.
* become unreadable due to media faults.
* been stored on a drive before it was re-initialized/formatted.

http://subrosasoft.com/OSXSoftware/index.php?mainpage=product_info&productsid=1


"TestDisk is a free data recovery utility. It was primarily designed to help recover lost data storage partitions and/or make non-booting disks bootable again when these symptoms are caused by faulty software, certain types of viruses or human error (such as accidentally erasing a partition table)."
http://en.wikipedia.org/wiki/TestDisk


-----

Entering:
mac data recovery
into Google will list some firms who specialize in recovering data. Data recovery isn't cheap.

for example:
Ontrack Data Recovery is the world leader in data recovery services and data recovery software offering the fastest, most convenient and cost-effective solutions to clients who have experienced data loss.
http://www.ontrackdatarecovery.com/

Enter the world of DriveSavers Data Recovery…
* Data Recovery Tools
* Data Recovery Process
* Data Recovery Cleanroom
http://www.drivesavers.com/

"Encryption: DriveSavers engineers have been trained and certified by leading encryption vendors, such as GuardianEdge, Utimaco Safeguard, PGP and PointSec, to safely recover file-level and disk-level encrypted data"
http://www.drivesavers.com/recovery-services/encryption/



List of recovery software tried:
http://discussions.apple.com/post!reply.jspa?messageID=11100707

------------

Make a copy of the partition/harddrive.

Do a bit-by-bit copy
In Mac OS 10.4, you can use the following command to display all the partitions:
Macintosh-HD -> Applications -> Utilities -> Terminal
# This is a little deep.
#It is best to do the pdisk command before you eject the external hard drive. Now, eject the external hard drive. Do another pdisk command to see what drive name has disappeared. The disappearing name is the name of your external hard drive.

sudo pdisk -l

#for details...

man pdisk

#The syntax is different for Mac OS 10.2. I do not know about 10.3.

# Do a bit-by-bit copy.

#eject the partition
-------------------------

Macintosh-HD -> Applications -> Utilities -> Terminal

dd if=/dev/disk0s10 bs=4096 | gzip | dd of=~/disk0-s10 bs=4096

#this can take awhile. Open another window and do ls -l ~/disk0-s10

# Here is how to restore the partition.
dd if=~/disk0-s10 bs=4096 | gunzip | dd of=/dev/disk0s10 bs=4096

Zero unused disk space
You may use the dd command to write is zeroes out to a disk. I wrote a gigabyte of data out to my external Firewire 400 disk.

mac $ dd if=/dev/zero bs=1024 count=1kx1k of=/Volumes/MacOSFirewire/zero
1048576+0 records in
1048576+0 records out
1073741824 bytes transferred in 77.977957 secs (13769812 bytes/sec)

Here is another way to run the command. When you run the command in the background you can question how for the process has gotten.


mac $ dd if=/dev/zero bs=1024 count=1kx1k of=/Volumes/MacOSFirewire/zero&
[1] 510
mac $ man kill
mac $ kill -s siginfo 510
953197+0 records in
953196+0 records out
976072704 bytes transferred in 82.524495 secs (11827673 bytes/sec)
mac $ 1048576+0 records in
1048576+0 records out
1073741824 bytes transferred in 89.700333 secs (11970322 bytes/sec)

Robert

This thread has been closed by the system or the community team. You may vote for any posts you find helpful, or search the Community for additional answers.

Partition Map Scheme - Unformatted. HELP.

Welcome to Apple Support Community
A forum where Apple customers help each other with their products. Get started with your Apple Account.