On Mon, 21 Nov 2005, Enrique Perez-Terron wrote:
> On Sun, 20 Nov 2005 17:49:27 +0100, Szakacsits Szabolcs <sz...@si...> wrote:
> > On Sun, 20 Nov 2005, Richard Russon wrote:
> >
> >> > Note "file /dev/hdb10" may still tell you ext3.
> >>
> >> It won't. The magic for ext2/3 is at offset 1080, which should be
> >> overwritten by $Boot.
> >>
> >> Also, in my magic file (FC4), it matches Windows boot sectors before
> >> ext2/3. It _really_ seems like the partition hasn't been formatted.
> >
> > Absolutely. Either nothing or another was formatted. Happens sometimes.
> ^^^^^^^^^^^^^^^^^
> Do you have any info about that? Any pointer?
It's a well known fact that Windows sometimes differently enumerates
partitions and people also make mistakes :-) Even yourself admitted
latter that you didn't know what you were doing.
Anyway, you can find out where is your NTFS partition by typing the below
as root in one line:
for i in `fdisk -lu | egrep '^/dev/' | awk '{print $1}'` ; do echo $i; od -c $i | head -1 ; done
Szaka
|