Linux - GeneralThis forum is for general Linux questions and discussion.
If it is Linux Related and doesn't seem to fit in any other forum then this is the place.
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Hi!
I wanted to Install Windows on a computer where debian was already installed.
after istalling windows (no error messages), I didn't see any boot manager, just
"NTLDR is missing"*
I installed windows again. I saw my partitions, but then the same
error happened again. I tried to install debian. I didn't see my
partitions(!)
I ran knoppix 4.0.2 DVD and grml 0.8.
I saw my partitions, but they seemed to be emty.
maybe I've a corrupt partition table.
(how) can I save my important data? is there any special tool wich is able to see it??
g johannes
Last edited by joethegeek; 09-17-2006 at 08:28 AM..
We'll need some more information about how things are configured.
First off, run this from Knoppix:
Code:
fdisk -l
This will show the disks and partitions. Please post the output.
Usually the way this is done is that the Linux boot loader (GRUB or LILO) will be reloaded after Windows is installed. But you need to know how the partitions are layed out to reinstall the boot loader.
Ok, you should be able to try mounting each of them to see if there is anything there. Partition 1 is extended, so it doesn't actually have files in it.
Code:
mkdir -p /mnt/windows
mount /dev/hda2 /mnt/windows
ls /mnt/windows
umount /mnt/windows
mount /dev/hda3 /mnt/windows
ls /mnt/windows
umount /mnt/windows
... etc ...
If there are things in them that you want to keep, you can copy them somewhere else, or make note of them so that further installations don't overwrite them.
If there aren't files on any of the partitions, I fear your data is gone.
If the installer completely reformatted each partition (which is usually how it happens), then even the EXPENSIVE data recovery companies may not be able to get the data.
If the installer simply deleted each file in each partition, you might be able to use a tool to find them. I have not had to do this on a Windows FAT32 filesystem, but a quick search did not reveal any free utilities.
It might be best to get a second opinion from someone who can actually sit down at the computer.
If Linux doesn't report any errors when mounting the partitions, there probably isn't anything awfully wrong with the filesystem.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.