After noticing some errors on one my secondary drives (ext2 fs) I ran e2fsck, and went off to work.
Upon returning, I noticed that when I tried to re-mount the drive, I got the following error:
mount /dev/hdd1
mount: wrong fs type, bad option, bad superblock on /dev/hdd1,
or too many mounted file systems
Again I ran e2fsck and received this error:
e2fsck /dev/hdd1
e2fsck 1.35-WIP (21-Aug-2003)
Corruption found in superblock. (blocks_count = 0).
The superblock could not be read or does not describe a correct ext2
filesystem. If the device is valid and it really contains an ext2
filesystem (and not swap or ufs or something else), then the superblock
is corrupt, and you might try running e2fsck with an alternate superblock:
e2fsck -b 32768 <device>
I tried doing exactly that and it told me that I had a bad magic number in super-block while trying to read /dev/hdd1 It suggested that I try to specify an alternate superblock, but alas, it was no luck. I even tried mke2fs -n /dev/hdd1 and using more backup superblocks that were printed out, again nothing worked.
I'm pretty stumped. Is there anyway for me to recover this drive? One thing I have noticed to be odd is that the block size is set to 4096, but I'm not sure if it's completely unrelated or not.
Any help is appreciated, thanks in advance.
Upon returning, I noticed that when I tried to re-mount the drive, I got the following error:
mount /dev/hdd1
mount: wrong fs type, bad option, bad superblock on /dev/hdd1,
or too many mounted file systems
Again I ran e2fsck and received this error:
e2fsck /dev/hdd1
e2fsck 1.35-WIP (21-Aug-2003)
Corruption found in superblock. (blocks_count = 0).
The superblock could not be read or does not describe a correct ext2
filesystem. If the device is valid and it really contains an ext2
filesystem (and not swap or ufs or something else), then the superblock
is corrupt, and you might try running e2fsck with an alternate superblock:
e2fsck -b 32768 <device>
I tried doing exactly that and it told me that I had a bad magic number in super-block while trying to read /dev/hdd1 It suggested that I try to specify an alternate superblock, but alas, it was no luck. I even tried mke2fs -n /dev/hdd1 and using more backup superblocks that were printed out, again nothing worked.
I'm pretty stumped. Is there anyway for me to recover this drive? One thing I have noticed to be odd is that the block size is set to 4096, but I'm not sure if it's completely unrelated or not.
Any help is appreciated, thanks in advance.