I want to be able to retrieve an SD Card's Serial Number, Manufacturer, and any other information it may provide. Java or just a command to run would be great. Compact Framework does it, but that doesn't help me.

link|improve this question
This is with a native mmc driver, right? (i.e. Not a USB-SD adapter). – Peter Cordes Dec 8 '09 at 19:14
Sorry for the delayed response, but I believe in my case, yes it is mmc (Android phone). There is no USB in this case, but I recall some instance where there wasn't a USB port, but the way the reader was connected to the device actually used USB. I can't remember exactly what that was though. I haven't gotten a chance to test the answers below (too many projects), but they both look promising. – Mark Dec 20 '09 at 5:26
feedback

2 Answers

You can also try

sudo hwinfo --disk

to get information on your disks, including SD Cards.

hdparm -i may not work through sdcard controllers

link|improve this answer
I didn't know about hwinfo, so that's interesting. However, the output (for a USB-SD adapter) doesn't show anything specific about the SD card. Probably it's not possible without native mmc, so maybe this is a good answer. – Peter Cordes Dec 8 '09 at 19:15
feedback

You may be able to get some info out of "hdparm"

hdparm -i /dev/sda

Gives a bunch of info about /dev/sda which includes its serial number. In my test case, this was a hard drive, but presumably the same may work for a SD card (which looks a lot like a disk to the OS)

link|improve this answer
doesn't work, at least not through a USB-SD adapter. – Peter Cordes Dec 8 '09 at 19:10
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.