Não é possível montar o USB

Não é possível montar o USB

Estou tentando recuperar dados de uma unidade USB, mas não consigo montá-la no Windows ou no Ubuntu. Tenho certeza de que o disco é fat32, mas não pode estar 100% porque é um amigo.

No Windows. Tentei abrir o diskmgmt, mas o dispositivo não aparece e não consigo.

No Ubuntu. Eu tentei o seguinte

sudo mount -t vfat /dev/sdb /mnt_location  
can't read superblock on /dev/sdb 

Eu então tentei consertar com fsck

sudo fsck /dev/sdb
fsck from util-linux 2.31.1
e2fsck 1.44.1 (24-Mar-2018)
fsck.ext2: Invalid argument 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>

Eu então tentei a primeira sugestão

sudo e2fsck -b 8193 /dev/sdb
e2fsck 1.44.1 (24-Mar-2018)
e2fsck: Invalid argument 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>

Eu então tentei a segunda sugestão

sudo e2fsck -b 32768 /dev/sdb
e2fsck 1.44.1 (24-Mar-2018)
e2fsck: Invalid argument 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>

Eu tentei executar a versão msdos

sudo fsck.msdos -v /dev/sdb
fsck.fat 4.1 (2017-01-24)
Got 0 bytes instead of 512 at 0

Eu também tentei a versão vfat

sudo fsck.vfat -v /dev/sdb
fsck.fat 4.1 (2017-01-24)
Got 0 bytes instead of 512 at 0

Ainda não consigo montar o disco ou obter acesso aos dados. Qualquer ajuda será apreciada. Posso tentar qualquer coisa no Windows ou no Ubuntu.

informação relacionada