$lsusbThe 'Mass Storage Driver' that mounts SD cards just works fine out-of-the-box. I concentrated my experiments on the SIM-card reader. I installed the 'MonoSIM' application to access the device.
Bus 001 Device 005: ID 0bda:0169 Realtek Semiconductor Corp. Mass Stroage Device
- http://www.integrazioneweb.com/monosim/
- install the debian package. After some google-ing, I found a package at http://linux.softpedia.com/progDownload/monosim-Download-27949.html
- under ubuntu, the package installer is automatically triggered and all associated packages (like libmono) are installed if needed
- make sure the 'pcscd" smartcard daemon package is installed - check with Synaptic
Some scripts that might be useful:
- combine the 'monosim' file records to 1 line per record
$ cat *mono* | while read a; do read b; echo "$a;$b"; done | sort -u > gsm.csv - I used OpenOffice to filter out old lines and save the file back to csv
- converting the csv back to the 'monosim' format:
$ while read a
do
echo $a | cut -d '"' -f 2
echo $a | cut -d '"' -f 4
done < gsm.csv > gsm.csv.monosim
see also: http://www.barrydegraaff.tk/index.php?page=files/Archive/Linux%20Sim%20Card%20reader/index.html
1 comment:
Thanks for this helpful article. I have a USB device with a similar ID (0bda:0161). Do you happen to remember which PC/SC driver you used?
Post a Comment