Como encontrar o superbloco?

0

Estou tentando encontrar o superbloco com o comando dumpe2fs , mas com essa saída não há informações sobre superblocos.

    
por Ani 09.05.2018 / 10:15

1 resposta

0

Você também pode encontrar o superbloco com

mkfs.ext4 -n /dev/sda
mkfs.ext2 -n /dev/sda

(escolha ext4 / ext2 se o seu sistema é ext4 / ext2; substitua sda pelo seu disco). Do manual :

-n Causes mke2fs to not actually create a filesystem, but display what it would do if it were to create a filesystem. This can be used to determine the location of the backup superblocks for a particular filesystem, so long as the mke2fs parameters that were passed when the filesystem was originally created are used again.

Reparando

fsck -b 11111 /dev/sda

onde 11111 é o superbloco, e sda a partição (REPLACE ambos com o que você precisa).

    
por Rinzwind 09.05.2018 / 10:24