Ho una chiavetta USB da 16 GB che in qualche modo è stata corrotta al punto da fdisk -l
non riuscire a trovarla (ricevo un messaggio di errore di una riga che dice: " Impossibile aprire / dev / sdc ")
Tuttavia, viene allegato, assegnato /dev/sdc
come mostra dmesg:
usb 1-7: new high speed USB device using ehci_hcd and address 69
usb 1-7: New USB device found, idVendor=048d, idProduct=1167
usb 1-7: New USB device strings: Mfr=0, Product=0, SerialNumber=0
usb 1-7: configuration #1 chosen from 1 choice
scsi68 : SCSI emulation for USB Mass Storage devices
usb-storage: device found at 69
usb-storage: waiting for device to settle before scanning
usb-storage: device scan complete
scsi 68:0:0:0: Direct-Access XXXXXXXX U167CONTROLLER 0.00 PQ: 0 ANSI: 2
sd 68:0:0:0: Attached scsi generic sg3 type 0
sd 68:0:0:0: [sdc] Attached SCSI removable disk
L'ho verificato anche usando ls -l /sys/block | grep -vE 'loop|ram'
:
lrwxrwxrwx. 1 root root 0 Mar 13 04:50 sda -> ../devices/pci0000:00/0000:00:1f.2/host0/target0:0:0/0:0:0:0/block/sda
lrwxrwxrwx. 1 root root 0 Mar 13 14:42 sdb -> ../devices/pci0000:00/0000:00:1d.7/usb1/1-1/1-1:1.0/host67/target67:0:0/67: 0:0:0/block/sdb
lrwxrwxrwx. 1 root root 0 Mar 13 21:20 sdc -> ../devices/pci0000:00/0000:00:1d.7/usb1/1-7/1-7:1.0/host68/target68:0:0/68: 0:0:0/block/sdc
lrwxrwxrwx. 1 root root 0 Mar 13 04:50 sr0 -> ../devices/pci0000:00/0000:00:1f.2/host1/target1:0:0/1:0:0:0/block/sr0
Ma quando emetto od -N 128 /dev/sdc
ricevo questo messaggio di errore a riga singola:
od: /dev/sdc: No medium found
Non ho bisogno dei dati su quell'unità flash USB , ho solo bisogno di sapere se c'è un modo per renderlo in grado di formattarlo (quindi riformattarlo) di nuovo.
È possibile? In tal caso, come posso procedere?
Aggiornamento : ho appena provato:
dd if=/dev/zero of=/dev/sdc1 bs=1M count=6000 conv=fsync
E ottenuto:
dd: writing `/dev/sdc1': No space left on device
1000+0 records in
999+0 records out
1047941120 bytes (1.0 GB) copied, 2.34859 s, 446 MB/s
Che dice che il dispositivo è vivo e vegeto?
Questo sta diventando interessante ...
fdisk /dev/sdc
ottengo: Unable to open /dev/sdc
.
dmesg
output aggiuntivo insieme all'errore da fdisk
? Puoi leggere direttamente dal dispositivo utilizzando, ad esempio od -N 128 /dev/sdc
,? (Se funziona dovrebbe stampare un breve dump esadecimale.)
dmesg
output aggiuntivo insieme all'errore da fdisk
. Quando io emetto od -N 128 /dev/sdc
ricevo questo messaggio di errore a riga singola: od: /dev/sdc: No medium found
.
fdisk
e dd
come root, giusto?
fdisk /dev/sdc
? Ricevi un errore?