fsck.ext3: Bad magic number in super-block while trying to open /dev/sda1 - HELP

nunodesa

Registered
Messages
4
How can I solve the image problem? Someone help me?
11731592_1030632463621246_4611462553685731622_o.jpg

Lets find where your superblock backups are kept.
mke2fs -n /dev/sda2

Down at the bottom of this output, should be a list of the backups like this.
Superblock backups stored on blocks:
32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632, 2654208

Finally, restore the superblock from the backup by replacing sda2 with your partition name, and the block number after -b with the first backup superblock, as shown below.
e2fsck -b 32768 /dev/sda2

If the first backup doesn’t work, you will need to try to restore it from the next backup and so on until it is successful. After each restore, you should reboot your system and see if it boots correctly. If not, repeat the steps and eventually it will work.


WHERE DO I FIND?
mke2fs -n /dev/sda2AND

e2fsck -b 32768 /dev/sda2


THANKS
 
Top