0

I had a NTFS partition on my ASUS laptop that had Windows 7 on it. I formatted it using Gparted Live CD because I thought there are some problems in Windows but then found out it was a problem of hardware... Now I would want to recover the partition and use the old Windows 7 that I had on it... Is it possible? :-)

Now I have 2 partitions on my laptop harddrive. 1st partition - NTFS that is empty (the one that I formatted) and has 200 GB and the 2nd partition - NTFS that has data on it and has 300 GB...

It was most probably a quick format since it took only like 1-2 seconds to format the partition... I didn't change the size of the partition or moved or resized other partitions on the harddrive...

I would want to "travel in time" and recover the partition, so that I would not have to install Windows 7 from scratch...

1 Answers1

2

As long as your second partition was always there and not created overlapping your deleted first partition it should be recoverable. You can use a linux live CD and install testdisk to recover it. Here is a step by step guide:

http://www.howtogeek.com/howto/15761/recover-data-like-a-forensics-expert-using-an-ubuntu-live-cd/

  1. Boot any linux live CD, e.g. Ubuntu
  2. Install testdisk. On ubuntu: sudo apt-get install testdisk
  3. Run testdisk as root: sudo testdisk
  4. Choose to create a new log file
  5. Select your disk, e.g. /dev/sda Choose Proceed
  6. Choose the partition table type (likely Intel in this case)
  7. Choose Analyze
  8. Choose Quick Search
  9. Select the deleted partition. You can use the left and right arrows to change its type (primary, logical, extended). You can use T to change the partition type if needed.
  10. Hit Enter then choose Write
  11. Reboot
Mark
  • 166