22/05/2020, 21:58
(Questo messaggio è stato modificato l'ultima volta il: 22/05/2020, 22:32 da Sargon6.)
(20/05/2020, 22:51)D-BARTO Ha scritto: Ciao
Hai provato da linux a dare
dove la x è la lettera dell'unità. (l'unita deve essere smontata per eseguire il comando)Codice:sudo fsck -p /dev/sdx
In alternativa con gparted dovresti risolvere cancellando tutto ricreando la tabella partizioni e riformattando (magari in ntfs come consigliato)
Codice:
lmde3c@asus-f555y:~$ sudo fdisk -l /dev/sdb
[sudo] password di lmde3c:
Disk /dev/sdb: 29,8 GiB, 32008830976 bytes, 62517248 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: 0xc3072e18
Device Boot Start End Sectors Size Id Type
/dev/sdb1 64 62517247 62517184 29,8G c W95 FAT32 (LBA)
lmde3c@asus-f555y:~$ sudo umount /dev/sdb1 # smonta memoria USB
lmde3c@asus-f555y:~$ sudo fsck -p /dev/sdb
fsck from util-linux 2.29.2
fsck.ext2: Valore magic non corretto nel super-blocco nell'aprire /dev/sdb
/dev/sdb:
The super-blocco could not be read or does not describe a valid ext2/ext3/ext4
file system. If the device is valid and it really contains an ext2/ext3/ext4
file system (and not swap or ufs or something else), then the super-blocco
is corrupt, and you might try running e2fsck with an alternate super-blocco:
e2fsck -b 8193 <device>
or
e2fsck -b 32768 <device>
Found a dos partition table in /dev/sdb
lmde3c@asus-f555y:~$
e2fsck è uno "strumento" per file-system ext2/ext3/ext4, non per fat32, quindi non mi è chiaro cos'altro dovrei fare...
Se ho capito bene, lo "strumento" per file-system fat32 è dosfsck, ma non ottengo risultati migliori...
Codice:
lmde3c@asus-f555y:~$ sudo dosfsck -p /dev/sdb
fsck.fat 4.1 (2017-01-24)
Logical sector size (64543 bytes) is not a multiple of the physical sector size.
lmde3c@asus-f555y:~$
ho provato anche
Codice:
lmde3c@asus-f555y:~$ sudo dosfsck -t -a /dev/sdb1
fsck.fat 4.1 (2017-01-24)
/dev/sdb1: 524 files, 681436/976591 clusters
lmde3c@asus-f555y:~$