la carte micro SD ne fonctionne pas sous Ubuntu?


4

J'essaie de formater une carte micro SD d'Ubuntu pour l'utiliser pour flasher des ROM sur ma tablette.Lorsque je reçois un adaptateur (j'ai essayé beaucoup) de micro SD à SD et que je le branche dans mon slot SD, la carte apparaît, mais lorsque je clique dessus dans Nautilus, je reçois le message:

                         Unable to access "32 GB Volume"

                         An operation is already pending

De plus, il disparaît et réapparaît toutes les 5 secondes environ.

J'aimerais vraiment que cela fonctionne, car c'est une carte très rapide dont j'ai également besoin pour ma caméra 360 et mon drone, car ils ont également besoin de vitesses d'écriture très élevées.Dans Gparted, il apparaît comme /dev/mmcblk0 que je n'ai évidemment pas autant de périphériques que je n'ai qu'un disque dur et un SSD MSATA, donc /dev/sda et /dev/sdb.Lorsque j'essaie de le formater dans Gparted, cela indique une erreur d'entrée / sortie, et parfois au début de Gparted, je vois que / dev / mmcblk0 n'est pas un répertoire.

Merci d'avance.

5

It sounds to me like you have a hardware problem. What I would suggest, is to get a SD to USB adapter and try that. It should solve your problem for now. If that doesn't work it is a problem either with the SD card, or the software. In this case the SD card is the more likely candidate. In which case fixing it is nigh impossible. So yeah. Hope this was helpful!


2

It does sounds like it could be a hardware issue like most people have said, make sure the lock in the card is all the way to the unlock position.

I always had better luck formatting SD cards (and pretty much with everything in Linux) through the command-line. If you don't have any information of value on the card, I would try to format it from command-line. You can follow the steps from here:

Find your card name with lsblk, which in your case sounds like it is /dev/mmcblk0.

I usually use fdisk but parted will do too: sudo parted /dev/mmcblk0

(parted) mklabel msdos

(parted) mkpart primary fat32 1MiB 100%

(parted) set 1 boot on

(parted) quit

sudo mkfs.vfat /dev/mmcblkp1