I am trying to format my SD card with Gparted and cannot get it done because I get the below message. The only way I can get rid of this message is removing the SD card
/dev/sdc cannot be seen in the terminal
Output of sudo parted -l
is below (I skipped the output for my SSD and HDD)
Error: /dev/sdc: unrecognised disk label
Model: Generic- SD/MMC (scsi)
Disk /dev/sdc: 2022MB
Sector size (logical/physical): 512B/512B
Partition Table: unknown
Disk Flags:
What can I do to fix this?
If the SD card does not contain any valuable data, try to zero it out ( = overwrite the whole card and set all bits to 0) using this command:
Replace
/dev/sdX
with the actual device name of your SD card as shown in the output oflsblk
.After that you should be able to partition and/or format it again. If it does not work, your SD card is physically damaged and needs to be replaced.
You can try to rewrite the label with:
may not work, but if it does, then try to format it again.
Cheers, Al