14

I can't mount my SD card. I'm using Ubuntu 12.04 LTS on an Asus K55V (Intel), and I have a sd card slot, but Ubuntu doesn't detect when I put a SD card in the slot. Not Ubuntu nor other program.

Tim
  • 32,861
  • 27
  • 118
  • 178
  • Make sure there's a formatted card in the slot and run the following commands: "sudo fdisk -l" and "blkid". Paste the results back into your question so that we can have a look. – fabricator4 Dec 01 '12 at 19:20
  • Have you checked the filesystem if the card is exfat you have to install exfat fuse for mounting it. – Chinmaya B Aug 14 '15 at 10:51

2 Answers2

18

Run these commands from a command prompt:

sudo modprobe -r r852
sudo modprobe -r sdhci_pci
sudo modprobe r852
sudo modprobe sdhci_pci

This uses modprobe to unload and reload the device drivers (in this case kernel modules) to automatically detect the SD card into the kernel.

Source codes

Mark
  • 320
0

For Broadcom Corporation BCM57765/57785, in addition to the answer below, I had to add lines to modprobe.d (before commands above)

$ sudo sh -c 'echo options sdhci debug_quirks=0x40 >> /etc/modprobe.d/sdhci-pci.conf'

AND

$ sudo setpci -s 00:1c.2 0x50.B=0x41

[source]

MInner
  • 383