Si après un fsck vous avez un message du type :

e2fsck 1.42.5 (29-Jul-2012)
ext2fs_open2: Bad magic number in super-block

fsck.ext4: Superblock invalid, trying backup blocks...
fsck.ext4: Bad magic number in super-block while trying to open sftp-proxy-1-lon5.slash.10GB.img
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:

 

Il faut chercher un nouveau superblock, pour obtenir la liste :

dumpe2fs <device> | grep superblock

Si la commande vous retourne une erreur vous pouvez simuler un formatage :

mke2fs -n <device>

ou

mkfs -n <device>

Affecter le nouveau superblock via la commande

e2fsck -f -b <superblock> <device>

ou

fsck.ext4 -f -b <superblock> <device>

 

info :

fsck.xxxx appelle la commande e2fsck

mkfs appelle la commande mke2fs