Como corrigir HD externo?

0

Eu tenho um HD externo que é dividido em duas partições: um exFAT com 700GB e uma partição LUKS com 300GB. Eu estava copiando do meu computador para a partição luks, mas ficou lento e preso, então eu decidi remover a conexão usb. Agora a partição LUKS não monta e é preenchida com arquivos importantes :( Como posso corrigir isso? Aqui estão duas saídas:

$ sudo parted -l

Model: ********** (scsi)
Disk /dev/sdb: 1000GB
Sector size (logical/physical): 512B/512B
Partition Table: msdos
Disk Flags: 

Number  Start   End     Size   Type     File system  Sinalizador
 1      1049kB  300GB   300GB  primary
 2      300GB   1000GB  700GB  primary

$ sudo fsck /dev/sdb

fsck from util-linux 2.28.2
e2fsck 1.43.3 (04-Sep-2016)
ext2fs_open2: Bad magic number in super-block
fsck.ext2: Superblock invalid, trying backup blocks...
fsck.ext2: Bad magic number in super-block while trying to open /dev/sdb

The superblock could not be read or does not describe a valid ext2/ext3/ext4
filesystem.  If the device is valid and it really contains an ext2/ext3/ext4
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 8193 <device>
 or
    e2fsck -b 32768 <device>

Found a dos partition table in /dev/sdb

Por favor, ajude!

Editar

Eu segui este tutorial e tentei restaurar um backup de superbloco. Usando isso eu acho todos os backups:

$ sudo mke2fs -n /dev/sdb

mke2fs 1.43.3 (04-Sep-2016)
Found a dos partition table in /dev/sdb
Proceed anyway? (y,n) y
Creating filesystem with 244189952 4k blocks and 61054976 inodes
Filesystem UUID: ***************************
Superblock backups stored on blocks: 
    32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632, 2654208, 
    4096000, 7962624, 11239424, 20480000, 23887872, 71663616, 78675968, 
    102400000, 214990848

Eu tentei restaurar a cada um dos números de bloco listados, mas sempre me provocou o mesmo erro, por exemplo:

$ sudo e2fsck -b 32768 /dev/sdb

e2fsck 1.43.3 (04-Sep-2016)
e2fsck: Bad magic number in super-block while trying to open /dev/sdb

The superblock could not be read or does not describe a valid ext2/ext3/ext4
filesystem.  If the device is valid and it really contains an ext2/ext3/ext4
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 8193 <device>
 or
    e2fsck -b 32768 <device>

Found a dos partition table in /dev/sdb
    
por Bella 14.07.2017 / 18:01

1 resposta

0

Tudo bem, verifique se o cabeçalho do LUKS está intacto:

cryptsetup luksDump /dev/sdb2

Se você receber um erro, desculpe-me, mas, a menos que você tenha um backup de seu cabeçalho LUKS, seus arquivos importantes não poderão ser recuperados.

Se você tiver um backup do cabeçalho LUKS, poderá restaurá-lo:

cryptsetup luksHeaderRestore /dev/sdb2 --header-backup-file somefile
    
por 16.07.2017 / 04:37