Не могу создать таблицу разделов на микро SD-карте

3238
ZuluDeltaNiner

Я пытаюсь переформатировать микро SD-карту, которая ранее была в Raspberry Pi (и перестал работать). Однако, когда я подключаю его к своему основному компьютеру (arch) и пытаюсь его разбить, я не могу, потому что gparted говорит, что у него нет таблицы разделов. Когда я пытаюсь исправить это, добавив таблицу разделов (GPT), я получаю ошибки ниже. Как я могу исправить мою карту USB?

Я также включил вывод dmesg при подключении, если это поможет. У меня нет доступа к любой другой ОС, поэтому я не могу просто попробовать что-то в Windows.

Вывод gparted при попытке поставить таблицу разделов на карту:

/dev/mmcblk0: unrecognised disk label Input/output error during write on /dev/mmcblk0 Error fsyncing/closing /dev/mmcblk0: Input/output error 

вывод dmesg, когда карта подключена:

[99702.919024] sdhci: Timeout waiting for Buffer Read Ready interrupt during tuning procedure, falling back to fixed sampling clock [99702.919048] mmc0: new ultra high speed SDR104 SDHC card at address 59b4 [99702.920575] mmcblk0: mmc0:59b4 00000 7.35 GiB  [99702.930961] mmc0: Controller never released inhibit bit(s). [99712.952421] mmc0: Timeout waiting for hardware interrupt. [99712.952498] mmcblk0: error -110 sending status command, retrying [99712.954084] mmcblk0: unknown error -5 sending read/write command, card status 0x900 [99714.412427] sdhci: Timeout waiting for Buffer Read Ready interrupt during tuning procedure, falling back to fixed sampling clock [99714.412447] mmc0: tried to reset card [99714.422507] mmc0: Controller never released inhibit bit(s). [99724.445769] mmc0: Timeout waiting for hardware interrupt. [99724.445834] mmcblk0: error -110 sending status command, retrying [99724.448129] mmcblk0: unknown error -5 sending read/write command, card status 0x900 [99724.448136] blk_update_request: I/O error, dev mmcblk0, sector 0 [99724.448140] Buffer I/O error on dev mmcblk0, logical block 0, async page read [99724.448668] ldm_validate_partition_table(): Disk read failed. [99724.448673] mmcblk0: unable to read partition table 
1
Если вы видите корову и ее голову отрывают от тела, ее ноги лежат на деревьях, а ее кишки разливаются повсюду, вы попытаетесь оказать первую помощь или думаете, что она только спит? Frank Sixteen 8 лет назад 0
Так я должен получить другую SD-карту? @FrankSixteen ZuluDeltaNiner 8 лет назад 0
Ну, я бы не сказал, что это следует по необходимости, но если вы хотите, почему бы и нет? Frank Sixteen 8 лет назад 0

2 ответа на вопрос

1
SiLeX

There is a known bug in the Linux Kernel 4.4-rc4 and later (It still persists today). You can read about this bug and a possible workaround on kernel.org.

It essentially breaks down to disable optional feature querying, which effectively hangs the card reader hardware:


The temporary workaround

  1. Unload the sdhc modules with

rmmod sdhci sdhci_pci sdhci_acpi

  1. Reload the modules with options to disable the optional features with

modprobe sdhci debug_quirks2="0x10000"

  1. Load the sdhci_pci module again with modprobe sdhci_pci

Try again with your SD card. It may take some seconds to initialize though (because the queries still time out, but we ignore that now).

If this works for you, continue with the permanent workaround


The permanent workaround

Please note, that it still is a workaround and may fail in the future. You should disable the workaround on future kernel versions to see if the bug has been fixed.

  1. Create a modprobe config file in /etc/modprobe.d (or whereever your distribution stores the config files) and write the module options down there. The name does not matter, as long as it ends with .conf.

echo 'options sdhci debug_quirks2="0x10000"' > /etc/modprobe.d/dell_sdhci.conf

The options will be loaded when booting up in the future. If it does not, you may try to hack the temporary fix into a startup script, as a very dirty, but possible, solution.

-1
Skaperen

This SD card is defective or damaged or the electrical pins are bad. Try again after cleaning them. If it still fails, then it is time for a new SD card.

Чип контроллера явно поджарен. Я не могу представить себе более агрессивную среду для высокоскоростного чипа, хрупкого по отношению к электростатическому разряду, чем когда любитель играет со своей открытой малиной и, конечно, в отсутствие какого-либо антиэлектростатического устройства. Frank Sixteen 8 лет назад 0
После этого я заметил, что эта карта была 8-го класса, что меньше рекомендуемого 10-го класса. Я думаю, что это была моя проблема в сочетании с вышеизложенным. ZuluDeltaNiner 8 лет назад 0

Похожие вопросы