I broke an easy2boot multi-ISO key by closing the laptop while it was copying an ISO in the background (I didn’t notice that it wasn’t finished).
lsblk brings
sdb 8:16 1 115,3G 0 disk
├─sdb1 8:17 1 115,3G 0 part
└─sdb2 8:18 1 31,5K 0 part
sudo fsck /dev/sdb brings
fsck de util-linux 2.33.1
e2fsck 1.43.8 (1-Jan-2018)
ext2fs_open2: Numéro magique invalide dans le super-bloc
fsck.ext2 : Superbloc invalide, tentons d'utiliser les blocs de sauvetage...
fsck.ext2: Numéro magique invalide dans le super-bloc lors de la tentative d'ouverture de /dev/sdb
Le superbloc n'a pu être lu ou ne contient pas un système de fichiers
ext2/ext3/ext4 correct. Si le périphérique est valide et qu'il contient réellement
un système de fichiers ext2/ext3/ext4 (et non pas de type swap, ufs ou autre),
alors le superbloc est corrompu, et vous pourriez tenter d'exécuter
e2fsck avec un autre superbloc :
e2fsck -b 8193 <périphérique>
ou
e2fsck -b 32768 <périphérique>
Trouvé une table de partitions dos dans /dev/sdb
sudo fsck /dev/sdb1
brings
fsck de util-linux 2.33.1
sudo fsck /dev/sdb2 brings
fsck de util-linux 2.33.1
fsck.fat 4.1 (2017-01-24)
0x25: Dirty bit is set. Fs was not properly unmounted and some data may be corrupt.
1) Remove dirty bit
2) No action
? 1
Perform changes ? (y/n) y
/dev/sdb2: 3 files, 2/23 clusters
and if done again
fsck de util-linux 2.33.1
fsck.fat 4.1 (2017-01-24)
/dev/sdb2: 3 files, 2/23 clusters
On the net I only find info about using fsck or gparted.
And gparted finds that sdb2 is not the right size but refuses to repair it, saying that it can’t detect the file system. It shows sdb1 with 115,30 Go and of type ntfs with flags “boot” and “type”, sdb2 with 31,5 Ko (21 used and 10,5 unused) and of type fat16 with flag “type”, and an unallocated space of 8,53 Mo.
Is there some tutorial or explanation somewhere that I can use to further test the key (and repair it even)? So far I don’t really understand what is happening.