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