Linux.com

Feature

How to recover lost files after you accidentally wipe your hard drive

By Shawn Hermans on August 28, 2006 (8:00:00 AM)

Share    Print    Comments   

Recently I wanted to make sure I had enough space to back up my home digital videos and pictures, so I purchased a new hard drive to add to my home Linux server. I moved all the files I wanted to save onto a single hard drive and repartitioned the old hard drive so I could upgrade to a newer version of Linux. After going through the process of reinstalling the operating system, I mounted the backup hard drive and discovered that it was empty. I had some how mixed up the hard drive I used to back up all the data with a hard drive that I wanted to wipe. Because I had done such a poor job of retaining backups on external media, I did not have any backups of my pictures and videos.

After the overwhelming feeling of dread passed, I started to look into file recovery options. I demoed a variety of commercial products to see if any of them could find my lost files or partitions. Nothing seemed to work. Finally, I discovered TestDisk and PhotoRec, and was able to use the latter to recover my lost files.

TestDisk can recover lost partitions of virtually any filesystem. PhotoRec can recover files of most types, including most picture and video formats. PhotoRec can be used on existing partitions, or can be used to recover files on deleted partitions without having to recover the underlying partitions. Both PhotoRec and TestDisk can be run on DOS, Windows (9x, NT, 2000, XP, 2003), Linux, FreeBSD, NetBSD, OpenBSD, Sun Solaris, and Mac OS X, and, their developers claim, can be compiled and run on most Unix systems.

The recovery

I began my attempt at recovery by using TestDisk run from a Knoppix CD. Unfortunately, I had already overwritten the partition table, and an exhaustive search of the hard drive for lost partitions yielded too many results. I decided to use PhotoRec instead to recover my lost files.

PhotoRec recovers files by finding deleted files and copying them to disk. This means that files should not be recovered to the same disk partition on which the deleted files reside (unless you're recovering from a disk image file), because that could lead to the deleted data being permanently overwritten.

Another important thing to remember is that PhotoRec will most likely recover a lot of files. This means that the partition on which the recovered files are to be stored should have at least as much free space as the size of the partition on which PhotoRec is searching for recovered files.

Possible setups for recovery include:

  1. Recover the files to a separate hard drive.
  2. Recover the files to a networked storage drive.
  3. Recover the files to a separate partition on the same hard drive.
  4. Image the hard drive using a tool like ddrescue and recover files using only one partition.

As I had completed erased my partitions, I could not use the third option. The second option introduces problems associated with network speed and latency. The fourth option is worth considering in the case of an incident response where the image of the hard drive is used as evidence.

I chose the first option, and installed two hard drives in a single computer. I divided the hard drive used to recover files into two major partitions; the first partition held the operating system (CentOS 4), while the second partition was set up to hold the recovered files. Partitioning in this manner is an extra precaution to prevent PhotoRec from halting the system by writing more files than the storage space allows. Another option is to run the operating system off a live CD such as Knoppix, which contains the TestDisk and PhotoRec utilities.

You can download both PhotoRec and TestDisk in a single archive file. The files photorec_static and testdisk_static are the executable files, and can be executed from the command line.

Make sure that the recovery partition is mounted (I mounted it at /var/recovery). Don't mount the hard drive that contains the deleted files; if the partition remains unmounted, you can't overwrite the data it contains.

Recovery steps

PhotoRec recovers files to the directory from which it is run. Therefore, I changed into the /var/recovery directory and ran photorec_static. If the PhotoRec executable does not run with this command, make sure that you either copy the executable to the /usr/bin directory or type in the full path where the program resides.

The PhotoRec interface is easy to understand. At the initial screen, you select the hard drive you wish to recover. In my case, it was /dev/hdb.

Select a media (use Arrow keys, then press Enter):
Disk /dev/hda - 200 GB / 186 GiB (RO)
Disk /dev/hdb - 160 GB / 149 GiB (RO)
Disk /dev/hdc - 120 GB / 111 GiB (RO)
Disk /dev/hdd - 296 MB / 282 MiB (RO)

[Proceed ]  [  Quit  ]

Next, you select the partition type. In my case, I selected an Intel/PC partition.

Disk /dev/hdb - 160 GB / 149 GiB (RO)

Please select the partition table type, press Enter when done.
[Intel  ]  Intel/PC partition
[Mac    ]  Apple partition map
[None   ]  Non partitioned media
[Sun    ]  Sun Solaris partition
[XBox   ]  XBox partition
[Return ]  Return to disk selection

Note: Do NOT select 'None' for media with only a single partition. It's very
rare for a drive to be 'Non-partitioned'.

The next screen listed the partitions on the hard drive. I wanted to recover partitions on the whole hard drive, so I selected the first option. However, before selecting this option, I needed to go to the [File Opt] menu to select which type of files I wanted to recover.

Disk /dev/hdb - 160 GB / 149 GiB (RO)

     Partition                  Start        End    Size in sectors
   D empty                    0   0  1 19456 254 63  312576705 [Whole disk]
 1 * Linux LVM                0   0  2 19457  80 63  312581807

[ Search ]  [Options ]  [File Opt]  [  Quit  ]
                              Start file recovery

PhotoRec can recover a variety of files, but I only wanted to recovery Word documents, AVI video files, JPG picture files, and MPEG video files. I selected the appropriate boxes.

PhotoRec will try to locate the following files

[ ] dbf  DBase 3, prone to false positive
[X]      FAT subdirectory
[X] doc  Microsoft Office Document (doc/xls/ppt/vis/...)
[X] dsc  Nikon dsc
[X] eps  Encapsulated PostScript
[ ] exe  MS executable
[X]      EXT2/EXT3 Superblock
[X] gif  Graphic Interchange Format
[X] gz   gzip compressed data
[X] jpg  JPG picture
[X] mdb  Access Data Base
[X] mov  MOV video
[X] mp3  MP3 audio (MPEG ADTS, layer III, v1)
[X] mpg  Moving Picture Experts Group video
[X] mrw  Minolta Raw picture

[  Quit  ]
                              Return to main menu

After you select the file types, go back to the previous screen and begin the scan of the hard drive. The scanning process is automated; on my machine it took a few hours to complete. Once PhotoRec is finished, the recovered files will be in multiple directories of the form recup_dir.x where x is the number of the directory. The files within these directories will not contain the names of the original files; instead, they are numbered to indicate the order in which the file was recovered, and an extension that indicates the file type. For example, f89.avi is the 89th file recovered and is an AVI file.

Post-recovery cleanup

While all of my files were recovered, I had many files on my hard drive. Manually examining each file would be time-consuming and tiresome. I created three folders within the /var/recovery directory named VID/, DOC/, and JPG/, into which I sorted the files using the commands:

find /var/recovery/ -name "*.avi" | xargs -i mv {} /var/recovery/VID/

find /var/recovery/ -name "*.mpg" | xargs -i mv {} /var/recovery/VID/

find /var/recovery/ -name "*.jpg" | xargs -i mv {} /var/recovery/JPG/

Although all the files are sorted into folders of the same type, the sorting was far from over. Before my accident, my hard drive contained more than 10,000 pictures, each around 2MB in size. During the recovery process, PhotoRec recovered all the pictures it could find -- including picture files from the Web browser cache. This meant it brought back a lot of unwanted files. To eliminate most of the picture files from miscellaneous sources, I moved files smaller than 1MB to a folder called SMALL, which I kept until I was satisfied that none were of interest. I moved the files to the folder using the command:

find /var/recovery/JPG/ -name "*.jpg" -size -1024k | xargs -i mv {} /var/recovery/SMALL/

PhotoRec does not recover the file names of recovered files, but luckily my recovered picture files contained EXIF metadata such as the time and date the picture was taken and the camera make and model. I used the Jhead command-line utility to extract this metadata. In the JPG folder I ran the command:

jhead -n%Y%m%d-%H%M%S *.jpg


This command renames all files with the jpg extension with its time/date stamp in the format YYYYMMDD-HHMMSS.jpg. Any files with the same time and date stamp are named in the format of YYYYMMDD-HHMMSSx.jpg, where x is a lower-case letter that increments for each duplicate time/date stamp found. Given that these pictures were all taken on the same digital camera, any pictures with the same time/date stamp should be the same picture. I moved duplicates to a folder called DUPS using the command:

find /var/recovery/JPG/ -name "*a.jpg" | xargs -i mv {} /var/recovery/JPG/DUPS/

Once I had the files labeled with the time/date stamp, I could sort them into folders according to their year and month.

If I had included keywords or comments in the picture files, I could have used libextractor to extract keywords from the JPEG files and sort the files into folders using those keywords. Alas, this was not the case, so I had to spend hours sorting the pictures manually into folders after the recovery. I did however use libextractor on my AVI files to determine information regarding the codec, frame-rate, and resolution of those videos.

How to prevent recovery

I was glad that I was able to recovery my files with such "ease," but I also realized how easy it would be for my sensitive data to be recovered if I ever got rid of an old computer or hard drive. Luckily, you can wipe data from a hard drive in such a way as to prevent files from ever being recovered. Whitedust Security gives the following as options for secure data removal.

  1. Writing over existing data with "junk" data.
  2. Giving the hard drive an acid bath.
  3. Degaussing the hard drive with a degausser.
  4. Damaging the disk with fire.
Assuming you do not want to render the hard drive unusable, the best options are either writing over existing data or degaussing the hard drive. If you don't have access to degaussing equipment, use a program like Wipe that writes over data with patterns known to cause data to become unrecoverable. Based upon your paranoia level, you can wipe your data with as many passes as you see fit. Some recommend 22 passes, while others say 99 is needed for absolute security. If you are only worried about the casual snooper who only has access to tools like PhotoRec, then three or four passes should suffice.

Share    Print    Comments   

Comments

on How to recover lost files after you accidentally wipe your hard drive

Note: Comments are owned by the poster. We are not responsible for their content.

Re:very well

Posted by: Anonymous Coward on August 28, 2006 08:53 PM
From http://www.cgsecurity.org/wiki/PhotoRec>:

"ReiserFS includes some special optimizations centered around tails, a name for files and end portions of files that are smaller than a filesystem block. In order to increase performance, ReiserFS is able to store files inside the b*tree leaf nodes themselves, rather than storing the data somewhere else on the disk and pointing to it. Unfortunatly, PhotoRec isn't able to deal with this, it's why it doesn't work well with ReiserFS."

#

The importance of backups

Posted by: Anonymous Coward on August 28, 2006 09:10 PM
Backups are nice, backups are good, backups make e sleep well!

In order to prevent events like that I always kept 'n' copies of my files, where 'n' > 1. So in case I loose partitions or files I'm always able to repair the damages.

Of course I began to act this way because i lost huge quantities of data... it's a common error.

And sorry for my incorrect English, but I'm italian and i do not write in English too often...

#

Re:The importance of backups

Posted by: Anonymous Coward on October 02, 2006 07:05 PM
youre english is very good!

#

Proprietary software is bad

Posted by: Anonymous Coward on August 28, 2006 09:27 PM
Proprietary software is bad for recovering data. It cost money, and you only use it once in a life time. The versions for download are crippled version that can find files that are possible to recover, but the the recovery functionality does not exist, or is limited to only 3 files or files smaller than 10 kb.

'dd' rocks.

Wikipedia has an article that covers data recovery:
* <a href="http://en.wikipedia.org/wiki/Data_recovery" title="wikipedia.org">http://en.wikipedia.org/wiki/Data_recovery</a wikipedia.org>

#

Re:Proprietary software is bad

Posted by: Anonymous Coward on August 29, 2006 05:53 PM
TestDisk and PhotoRec are GPL software, wonderfull world of free software

#

Foremost

Posted by: Anonymous Coward on August 28, 2006 10:40 PM
I haven't used the tools listed in this article. I have had the need to do this sort of thing though. And when I went looking for tools to do this I found a little program called <a href="http://foremost.sourceforge.net/" title="sourceforge.net">Foremost</a sourceforge.net>. It seems to be the best program I was able to find for doing this sort of thing.

#

Re:Foremost

Posted by: Administrator on August 29, 2006 05:50 PM
PhotoRec can handle a few case of data fragmentation, it gives better results than Foremost but Foremost is fastest.

#

dban

Posted by: Anonymous Coward on August 29, 2006 12:40 AM
Darrick's Boot and Nuke bootable CD/floppy disk seems to work well. I've tried to recover data with Norton afterwards and had no luck at all so I trust it.

<a href="http://www.dban.org/" title="dban.org">http://www.dban.org/</a dban.org>

#

Re:dban

Posted by: Anonymous Coward on August 29, 2006 09:20 AM
Yes, dban is great if you don't want to be able to recovery information. This article wasn't about making the information unrecoverable though, but rather attempting to recover information.

#

not all that

Posted by: Anonymous Coward on August 29, 2006 01:08 PM
I had 2 120G harddrives with media files on them. One had been repartitioned with 2 new partitions and the other had been repartitioned for LVM. Testdisc found the old partition on the LVM drive but only one of over 100 media files was recoverable with Photorec and that file was pretty buggy.

#

Re:not all that

Posted by: Anonymous Coward on August 29, 2006 05:57 PM
PhotoRec 6.5-WIP gives far better results than previous version.

#

fdisk

Posted by: Anonymous Coward on August 29, 2006 09:01 PM
Dunno about you all, but I recently 'wiped' (i.e, re-partitioned) one of my drives during an install. After those initial moments of dread, I took a few guesses at what the old partition layout (multiple partitions for boot/swap/root) was. Turns out that I ended up guessing correctly and all my files were where I had left them.

This doesn't help for formats, but if you re-partition your drive, you don't need expensive tools to get your data back, just fdisk (which is available on most install media windows/linux).

Oh and typing FDISK in all caps in the subject triggered the 'lameness' detector, which is lame in and of itself. Sheesh.

#

Other recovery

Posted by: Anonymous Coward on August 29, 2006 11:09 PM
I've used photorec and recoverjpeg both to restore deleted files, you can also recover files from damaged CD/DVD media.

Normally you can't read them well because you get a read error, but using dd_rescue you can make an image telling dd_rescue to continue reading even if there are errors. Then you can recover files from the image file you make.

To get a good dd remember to check the blocksize (normally 2048) and count with isoinfo first, and use the bs=2048 and count=X flags for dd.

#

Re:Other recovery

Posted by: Anonymous Coward on August 29, 2006 11:21 PM
Nearly forgot, the same holds true even for flash devices, I've recovered from bad flash cards too! Actually bad ones that weren't even recognized at all by windows, I was able to dd_rescue them with Linux and recover the files.

#

Re:Other recovery

Posted by: Anonymous Coward on September 02, 2006 03:46 AM
I've recovered a bad flash as well though I used regular dd, syslog entries containing numbers of bad sectors and a simple script. Now I'm looking for a tool to repair broken JPEGs. Some of them look as if parts of the pictures were shifted and discolored. I was hoping to recover at least some of them. Does anyone know of such a tool?

#

Degaussing

Posted by: Anonymous Coward on August 30, 2006 04:03 AM
Degaussing will destroy the hard drive, as internal data will be deleted. For safe wiping of data, use DBAN or the internal data-destruction feature modern harddrives have: the ATA-command SECURITY ERASE UNIT, which can be invoked by some tools.

#

Recuperar datos de disco duro

Posted by: Anonymous Coward on May 11, 2007 10:23 PM
Por eso es tan importante disponer de un buen sistema de copias de seguridad. Nadie ni núnca se esta a salvo de una eventual pérdida de datos. Para aquellos que tengan problemas y necesiten<a href="http://www.lineared.com/" title="lineared.com"> recuperar datos de un disco duro averiado</a lineared.com> os recomiendo esta web. Son muy buenos, económicos, efectivos y rápidos. <a href="http://www.lineared.com/" title="lineared.com">Recuperacion de datos de disco duro averiado</a lineared.com>.

#

Recuperacion de datos de disco duro

Posted by: Anonymous Coward on May 13, 2007 07:56 PM
<a href="http://www.lineared.com/" title="lineared.com">Recuperacion Disco Duro, Recuperar Datos de Disco Duro</a lineared.com> - <a href="http://www.lineared.com/" title="lineared.com">http://www.lineared.com/</a lineared.com>

Recuperar Datos Disco Duro ,
Recuperacion Datos Disco Duro ,
Recuperar Disco Duro ,
Recuperacion Disco Duro - [<a href="/detail/link-5947.html" title="linux.com">Más info</a linux.com>]


<a href="http://www.lineared.com/" title="lineared.com"> Recuperar Disco Duro, Recuperacion de Datos de Disco Duro </a lineared.com> - <a href="http://www.lineared.com/" title="lineared.com">http://www.lineared.com/</a lineared.com>

Recuperar Datos de Disco Duro ,
Recuperacion de Datos de Disco Duro ,
Recuperar Disco Duro ,
Recuperacion de Disco Duro - [<a href="/detail/link-5947.html" title="linux.com">Más info</a linux.com>]



<a href="http://www.lineared.com/" title="lineared.com">Recuperacion Disco Duro, Recuperar Datos de Disco Duro</a lineared.com> - <a href="http://www.lineared.com/" title="lineared.com">http://www.lineared.com/</a lineared.com>

Recuperar Datos Disco Duro ,
Recuperacion Datos Disco Duro ,
Recuperar Disco Duro ,
Recuperacion Disco Duro - [<a href="/detail/link-5947.html" title="linux.com">Más info</a linux.com>]


<a href="http://www.lineared.com/" title="lineared.com"> Recuperar Disco Duro, Recuperacion de Datos de Disco Duro </a lineared.com> - <a href="http://www.lineared.com/" title="lineared.com">http://www.lineared.com/</a lineared.com>

Recuperar Datos de Disco Duro ,
Recuperacion de Datos de Disco Duro ,
Recuperar Disco Duro ,
Recuperacion de Disco Duro - [<a href="/detail/link-5947.html" title="linux.com">Más info</a linux.com>]

#

very well

Posted by: Administrator on August 28, 2006 04:59 PM
hi.
it's a shame that this article wasn't released a few weeks earlier<nobr> <wbr></nobr>:) but it's very good one. but i'd like to ask, whether a filesystem play a role in backing up the erased data, because i heard that it's unable to recover data from reiser partion.

thnx

#

How to recover lost files after you accidentally wipe your hard drive- Help!

Posted by: NoGimmicksNeeded on July 08, 2007 06:42 PM
Hi- Last night I made a big mistake and copied a pictures sub-directory over another Pictures sub-directory effectively deleting over 4,000 .jpg pictures. All of the pictures were stored on a Newtorked Buffalo Technology LiveStation hard drive. The hard drive runs Linux, although I access the hard drive from a Windows NT based computer.

After reading this informational article, I would like to use either TestDisk or PhotoRec to attempt to receover these files. I have a Knoppix boot disk.

What is the best way to use one of these programs? Shoudl I boot from Knoppix and then run the program and poin to teh network drive? Is it possible to run one of these programs directly on the Buffalo Live Station network drive. Any help that is provided would be much appreciated? Thanks

#

How to recover lost files after you accidentally wipe your hard drive

Posted by: Anonymous [ip: 220.238.162.211] on August 10, 2007 08:39 PM
Thanks

#

How to recover lost files after you accidentally wipe your hard drive

Posted by: Anonymous [ip: 220.238.162.211] on August 10, 2007 08:40 PM
Thanks

#

How to recover lost files after you accidentally wipe your hard drive

Posted by: Anonymous [ip: 220.238.162.211] on August 10, 2007 08:41 PM

Thank you

#

Thanks

Posted by: Anonymous [ip: 220.238.162.211] on August 10, 2007 08:42 PM
cheers

#

How to recover lost partitions after the Raid controoler recoverd them

Posted by: Anonymous [ip: 71.103.250.164] on September 18, 2007 02:46 AM
I am here up the creek or creak ( Forget to spell ) One of my array drives failed , I have replaced it and it went through a 9 hours of recovery and then the slot ) failed . replaced that and it went through another 9 hours of recovery . and the verdict was " no operating suystem found. i have checked it with utilty CD . there is no partitions to see .

any good tolld to recover these partitions ? I owe it big time to anybody who give me a decent answer . I do not trust all those data recovery software that are located out of country .. so help me please ..!!

#

PhotoRec doesn't download

Posted by: Anonymous [ip: 71.54.144.103] on September 19, 2007 12:51 PM
As soon as I download it to the desktop or in another folder, it disappears like it was never there. What do I do now?

#

Re: PhotoRec doesn't download

Posted by: Anonymous [ip: 125.25.187.169] on October 09, 2007 01:25 PM
open terminal,type: sudo photorec ,if it aint there you aint have it.I mean,it might HIDE somewhere?

#

How to recover lost files after you accidentally wipe your hard drive

Posted by: Anonymous [ip: 125.25.187.169] on October 09, 2007 01:09 PM
Try a live ubuntu cd,or a helix live cd.

#

Re: How to recover lost files after you accidentally wipe your hard drive

Posted by: Anonymous [ip: 125.25.187.169] on October 09, 2007 01:29 PM
Try a live ubuntu cd,or a helix live cd

#

It still amazes me

Posted by: Anonymous [ip: 74.238.191.22] on November 02, 2007 12:42 PM
That we have people who should know better not have regular backups let alone off-site ones. I mean, come on Shawn, the only copies of your pictures and home movies is on that drive? You don't backup at least weekly to some sort of removable media? And you didn't specifically back up the drive knowing you were going to work on or around them-doing destructive partition operations? Really? Wow, I hope you are not in IT, if you are, you should be very embarrassed. Since so many now have some sort of broadband, free off-site backups are a very simple deal. If you don't have anyone willing to trade off-sites then pay for one of the many off-site services. Having a hard drive fail or a big mistake like this article dealt with should be only a minor inconvenience not a data losing event. At least take a tape or external drive backup what is important and throw in your trunk of your car or store at work or even get a safe deposit box-anything but don't keep it local! I've seen several interviews of people lamenting losing all their family pictures and videos in the California fires, it's a shame but 100% preventable. This is a recurring theme I see over and over and I'm not sure what the answer is. Those of us in IT must do a better job of telling our friends and family-even implementing it for them. I think OS setups should be changed to include a backup option-reminding the user to death if they skip-just like we now try to force a firewall and non-root/administrator access for day-to-day usage.

#

Re: It still amazes me

Posted by: Anonymous [ip: 92.81.139.97] on November 12, 2007 05:34 PM
Excuse me?! "Those of us" in IT should do what?! What kind of "in IT" job do you have that a weekly backup would serve your purpose? The example in this article wasn't for the ones or ... "so many" with a broadband connection that were just lazy to make a backup, it was about a solution to a problem. How exactly did it happen is irrelevant! I don't get this "you should have known better" attitude besides maybe showing everybody how smart and reliable can some other "in IT" guys can be, when if you knew only half of what you claim to know, you should be very aware of the fact that sometimes shit happens! Who knows, maybe that's hard to contemplate when you're living in a bubble filled with off-site secure services, removable media where shit happend only when you allow it to. Anyway, great article Shawn, very well written and to the point. Take care.

#

yaaaaaaaahhhhhhhhhh

Posted by: Anonymous [ip: 210.213.192.86] on December 15, 2007 01:30 AM
great











great



























































#

How to recover lost files after you accidentally wipe your hard drive

Posted by: Anonymous [ip: 122.167.210.123] on January 04, 2008 07:04 AM
Well, I have a similar experience to share and would like to pen it down here.
I had accidentally deleted the entire pictures folder from my laptop. While cleaning all the unwanted stuffs I had also deleted this folder using the Shift+Del keys. The folder contained all my marriage and honeymoon pictures. When I told this to my wife she was very depressed and so was I. I stopped using the laptop further and both started researching and asking our friends about what can be done to recover the pictures back.
Then, it was my best friend David (technical guy) who suggested me Undelete Data Recovery Software (http://www.diskdoctors.net). We tried it and were really happy with the results. It recovered 245 pictures out of 250, a great tool i must say. Thanks to the Data Recovery Software and my dearest friend David.

#

How to recover lost files after you accidentally wipe your hard drive

Posted by: Anonymous [ip: 121.222.118.204] on February 06, 2008 02:18 AM
Hi, Helen-lyn here.
I just wanted to say you are an Angel! My husband decided to clean up our computer after a nasty virus we got. He made a back-up disk and to put it mildly, the back-up was a f*#%k-up!!!
I lost a years worth of family photo's and Digital Art I had created and Pictures I had been collecting.
Now I know what you are going to say! What a blonde (ah-hmm well yeah, I know!)
Why hadn't I made a copy to disk before this? Well pure laziness, (ps I liked your come back Shawn Quote: "Shit Happens!" lmao) and the lack of computer knowledge in my defence.
But because I am a persistant little so-an-so, I searched the net and found your solution. Godsent I can't tell you enough.
So my hubby got back on and whoolah! My pics are all restored safe and sound and awaiting me to sort them back into there rightful folders. I don't mind the hard yakka, I am just so glad I have them back.
Now yes, I know what you are thinking...Put the goddamn things onto a disk (or at least get off my butt and have them printed and safe and sound in a hardcopy traditional old Photo Albumn! lol
Anyway, I have a tendency to rammble,
Thanking you muchly
Helen-lyn xxoxooxoxoxoxo

#

How to recover lost files after you accidentally wipe your hard drive

Posted by: Anonymous [ip: 203.87.210.166] on February 29, 2008 12:37 PM
Thanks for the article, it helped me a lot!!!I recovered almost all my doc, pix and audio files but the avi and audio part were kind of blurry..any suggestion?Thanks.

#

This story has been archived. Comments can no longer be posted.



 
Tableless layout Validate XHTML 1.0 Strict Validate CSS Powered by Xaraya