You are not logged in.
Pages: 1
Topic closed
Hey all I'm an arch linux newbie, and I'm trying to get SD cards to mount using the built-in card reader in my laptop. When I plug in a card, nothing happens on the terminal screen. Any help would be much appreciated. Thanks!
Offline
"When I plug in a card, nothing happens on the terminal screen" XD.
remove the card and write
ls /dev/sd*then plug the card and write again
ls /dev/sd*do you see any difference between the results?
if yes just write:
mount /dev/<newdevice> /dev/mntif not, your built in card reader is not recognized.
Last edited by felipe (2013-08-01 01:32:57)
Offline
Welp that worked. I was able to spot the difference and mount it. Usually when I plug in a flash drive or any media for that matter, the terminal screen tells me which device (sdd, etc.) is plugged in.
Offline
Welp that worked. I was able to spot the difference and mount it. Usually when I plug in a flash drive or any media for that matter, the terminal screen tells me which device (sdd, etc.) is plugged in.
I am not sure where you have gotten the idea that there is going to be some kind of an announcement from the command line. Maybe you are thinking of the system logs, which will tell you of the addition of new hardware. If you are in the TTY, then if there are messages of a certain log level or above (or below... since 7 is debug and 1 is emerg) they will be pushed to the console if the machine is configured to do that. So USB flash drives have no caching mode, so they are set to write through. Sometimes this can be pushed to the console... maybe this is what you are thinking of.
Instead of using "ls /dev/sd*" you can otherwise use lsblk to see what block devices are present. Or you can use lsusb to see if the device is being recognized. The problem with using "ls /dev/sd*" is that SDCard don't always show up as a sd* device. Depending on yur hardware, it may, but these days emmc devices will show up as /dev/mmc*.
Offline
You can try this (taken from this forum):
sudo sh -c "echo 1 > /sys/bus/pci/rescan"
Offline
Instaliing OpenSC package from oficial repository fix the problem for me.
Offline
Another necrobump.
Closing
Offline
Pages: 1
Topic closed