1

Ubuntu cannot read my SD card. Many people have pleaded passionately for help with this problem on this board...and no one seems to have received an answer.

I just upgraded to 14.04, but, alas, to not avail.

Put the SD card into the USB slot and nothing at all happens.

This has been a problem with Ubuntu for many years, judging from the history of complaints about it. It's odd that it cannot be fixed. Every cheap MP3 player can read one of those SD cards as easy as pie!

1 Answers1

3

Ubuntu can read SD cards. If you're having problems consider:

  • Can Ubuntu see your SD card reader? lsusb aught to tell you if it has connected. If that hangs or doesn't show it though, that suggests that there's a problem. The practical solution is to try another.

    SD card readers are almost famously cheap. I've had some that are so poor they hang BIOS if they're plugged in at boot, or cause USB bus failures if left in too long. I've never experienced such a wide range of suck in any other hardware.

  • Can Ubuntu read the filesystem? Does sudo fdisk -l show the partition on the SD card? Is it supported by the Kernel? Run less /proc/filesystems to see what are supported. Practical solution: pick a better format that your devices and your computer can read!

  • Is is just not mounting? If you can see the reader and see a mountable partition, try mounting it manually (sudo mount /dev/sdX1 /mnt — replace the sdX1 with the right designation from fdisk). There's a fairly complicated udisks/udev chain for mounting these things so perhaps there's a bug in the combination of your reader and format. This is a known issue you you step around with:

    echo 1 > sudo tee /sys/bus/pci/rescan
    
Oli
  • 299,380