Multislot Usb Memory Card Readers - detecting newly inserted cards!

free web hosting
Free Web Hosting > Computers & Tech > How-To's and Tutorials > OS > Linux

Multislot Usb Memory Card Readers - detecting newly inserted cards!

qwijibow
Notice from qwijibow:


Ignore all scripts on this page, auto probing of USB card readers is handld by the Hardware Abstraction Layer. Make sure HAL is installed, and the daemon "hald" runs during boot-up (or at least before you start using the usb card reader)


However, the first post will still be of use for help installing the usb card reader drivers.






My Multi-Slot USB card reader didnt work exactly how i liked itout the box, so i made a few tweaks.
Here's how and why.

my Card reader is a 21 in 1 Memory card reader, which has 4 slots for cards, and is capable of using upto 4 different cards at once.

All 4 cards run off the SAME single usb connection (without an internal USB hub)

This adds an unseen consiquence.
Bu doing this, we forfeit USB's hot plug abilities.

For example, a single card reader will use its hotplug abbility's to reset the usb drivers when a new card is inserted or removed, causing the kernel to re-scan the device, and detect vital things like the cards size, partiton table read/write etc etc.

Multi slots cannot do this.
Imagine One card is in use, and we insert a second, if the device was to use the normal hot-plug trigger, the in use device would be re-set. possably losing data.

######################
Question: Ahaaaaa !
But windows seems to be able to detect new cards beeing inserted just fine !
and without upsetting other cards in use... How does windows do this ?
######################

######################
Answer: Windows does not use the hotplug usb feature either, it polls each of the 4 slots every second or 2, asking them if they have a card inserted, if the answer changes from no to yes, it knows a card was inserted, if the answer changes from yes to no, it knows a card was removed.
######################

So, a simple solution may be to implement the windows method into a linux script.
The script would be fairly simple, somthing like

CODE

white true
do
/sbin/hdparm -z /dev/sdX || sleep 9
sleep 1
done

replace X with the slot character [a-z]

This script loops round checking the usb card reader for new cards every second.
if a card is in use, the script waits 10 seconds untill it continues checking.

This basically how windows does it.
BUT i hate this method for 3 reasons.

1) The disk activity light constantly flickers, annoying, as my card reader is eye hight, and its distracting.
2) Its a messy solution, and possably slows down performance of the card reader.
3) it fills the messages log will /dev/sdX is busy mesages.

People are always saying how customisable linux is, and how its so easy.. so lets show off, and
make a better solution.

BUT first off, lets make sure your multi slot cad reader is working.

make sure the following modules are loaded (run lsmod as root, and look for the following enteries)

QUOTE
sg
sd_mod
usb_storage
scsi_mod
ohci_hcd
ehci_hcd  <== Only needed for USB version 2.0
usbcore


if any of those are missing, run the following comand as root, for each missing module

CODE

modprobe <name of mising module>


if the above command ever returns a module not found, dont worry, the module if porbabl in-bult into your kernel by your distro makers, and noesnt need to be loaded speratly.

now, just to make sure your card reader is supported, run the following command.

CODE

dmesg | grep scsi


you should see output similar to the following.
NOTE: you will have extra enteries if you also have SCSI disks as opposed to IDE disks.
If you dont know what SCSI is, you probably dont have SCSI disks tongue.gif

QUOTE
scsi0 : SCSI emulation for USB Mass Storage devices
Attached scsi removable disk sda at scsi0, channel 0, id 0, lun 0
Attached scsi generic sg0 at scsi0, channel 0, id 0, lun 0,  type 0
Attached scsi removable disk sdb at scsi0, channel 0, id 0, lun 1
Attached scsi generic sg1 at scsi0, channel 0, id 0, lun 1,  type 0
Attached scsi removable disk sdc at scsi0, channel 0, id 0, lun 2
Attached scsi generic sg2 at scsi0, channel 0, id 0, lun 2,  type 0
Attached scsi removable disk sdd at scsi0, channel 0, id 0, lun 3
Attached scsi generic sg3 at scsi0, channel 0, id 0, lun 3,  type 0


look at the "lun x" enteries, you SHOULD see on lun for each slot in your card reader.
i have lun 0 to lun 3 (4 slots)

If you only see one lun, and have more than 1 slot, your kernel needs a re-compile.
This is very un-likely, but if this is you, reply here, and i wil help you do this.

basically you need to go to
Device Drivers -> SCSI ->
and select "PROBE ALL LUNS ON SCSI DEVICE"

and re-compile.

Each slot will be accessable as a differant /dev/sdX1 device.

Insert your memory cards, then un-plug the reader, and plug it back in.

###########
QUESTION: why did we have to re-plug it in ?

ANSWER:
Remember what i talked about above ?
because no cards were inserted when you turned the computer on / loaded the drivers, then no cards were detected, linux has not re-scanned the device, so still thinks no cards are inserted, re-plugging it in, caused linux to re-scan the device and find new cards.
###########

I am NOW going to show you how to make linux re-scan for new cards all by itself, when needed, withoout user interaction.

you will need to install sudo if sudo is not already installed (it probably is !)

edit /etc/sudoers with the following command AS ROOT

CODE

visudo -f /etc/sudoers


and add the following line. to the end of the file.

QUOTE
%users ALL = NOPASSWD:/sbin/hdparm -z /dev/sd[a-e]


this will allow normal users to probe the memory cards without the root password
(if you have more than 5 SCSI devices + memory card slots, edit the "[a-e]"
if in doubt [a-z] will allow ou to use all of them.

now make some mount points for your memry cards.

CODE

mkdir /mnt/sda
mkdir /mnt/sdb
mkdir /mnt/sdc
mkdir /mnt/sdd
chmod 777 -R /mnt/sd*


now edit /etc/fstab
add the following lines

QUOTE
/dev/sda1      /mnt/sda          auto            noauto,user,sync        0 0
/dev/sdb1      /mnt/sdb        auto            noauto,user,sync        0 0
/dev/sdc1      /mnt/sdc          auto            noauto,user,sync        0 0
/dev/sdd1      /mnt/sdd        auto            noauto,user,sync        0 0


AND FINALLY....
we are going to program a *FAKE MOUNT*

The job of this, is to replace the real mount.
it will snoop at what the computer wants mount to do.
if mount is beeing called to mount a memory card, it will probe that card first.
re-scanning its partiton table.

cd into /bin/ and rename the mount program

CODE

cd /bin
mv mount mount-real


now add the fake mount.
save the following file as root, to /bin/mount.

Notice from qwijibow:

This version of the mount script is obsolite, use the mount script, and install instruction from post =6 of this thread !!!!


CODE

#!/bin/bash
# Code by Chris Stones (chris.stones@ googles email [i hate spam])
# If you can think of a better way of doing this ( patch the usb_storage drivers ?) Please let me know;)

# fake mount !!!!
# intercept parameters to mount.
# may need to re-scan the media pannel for new / removed cards before mounting.

#this script assumes you have sudo setup to allow regular users to run hdparm -z /dev/sd[a-z]
#add line "%users ALL = NOPASSWD:/sbin/hdparm -z /dev/sd[a-e]" to /etc/sudoers

#this script ALSO assumes the mount points are /mnt/sd[a-z]
#if anyone can edit this script to parse /etc/fstab, please do so, and let me know.

test_wait() {
       if [ ! -f $1 ]; then
               sleep 1
       fi
}

probe() {
   sudo /sbin/hdparm -z $1 > /dev/null
   test_wait $1"1"
   test_wait $1"1"
   test_wait $1"1"
}

if [ `echo $1| head -c 7` = "/mnt/sd" ]; then
   probe "/dev/"`echo $1 | tail -c 4`
fi


# call real mount
/bin/mount-real $1 $2 $3 $4 $5 $6 $7



now make the script executable
CODE

chmod +x /bin/mount


This little script is quite simple, if you call mount with parameter "/mnt/sd[a-d]"
the script will instruct the kernel to re-scan the device you are about to mount.

it then waits upto 3 seconds for the kernel to find a card, and add a /dev/sd[a-d]1 device node.

it then passes control to the real mount.

If you are NOT mounding a usb card reader show, control is passed instantly to the real mount.

Try it out, you should now be ableo to mound your cards like so

CODE

mount /mnt/sda


or with KDE's graphical mount tools (or gnome / whatever graphical envronment you use)

So, what do you think ??
Better solution that constant probing ? or do you prefere the Windows method ?

 

 

 


Reply

yordan
I have only 4 readers, 2 types of cards each, also on a single USB slot.
Do you really know people using multi-slot card reader with several simultaneous media ?
I only have one card in my multi-reader, but I am sure if I had several cards I would have the same behaviour.
I use the cards in my photo camera, in order to cleanup my camera memory card and put it on the disk.
Notice from username:
Here is the way I proceed

1) I remove the memory card from my photo camera.
2) I insert the card in my multi-reader.
3) Windows XP opens a explorer window.
4) I click on my pictures directory.
5) Edit, select all, edit, cut.
6) Go to my hard disk, my_camera subfolder.
7) Edit, paste.
8) Go to the windows taskbar, "safely disconnect a peripheral", disconnect my card reader.
9) Remove the card from the PC reader.
10) insert the card in my camera.
11) Remove the second memory card from my camera.
12) go to 2.

So, I never had two cards at the same moment, and I cleaned the Windows cache in order not to have things in cache when removing the card.
I guess it's the only safe way, so everybody should do that way, no matter how many how many memory cards you own

 

 

 


Reply

qwijibow
If you actually READ this tutorial, you would have noticed..

1) This tutorial if for making memory cards hot-pluggable for LINUX
2) Windows already does this by default by probing the device on a continuous loop. (which i personally think is messy, and a waste of resources).

By following this tutorial, linux users will be able to use memory cards that were NOT inserted dureing boot up.

Otherwise, i user would need to unplug the usbn card reader, or re load the drivers, OR run hdparm -z /dev/sdX manually.

please read a post before replying, otherwise it just clutters up the thread with nonsens like the second and third reply to this tutorial.


Reply

yordan
@qwijibow : you are right when you give a full tutorial for Linux users.
I just wanted to point out how standard Windows users should do if they have the same kind of reader and do not want to loose date. Few hardware knowledge can sometimes avoid big software trouble.
Sorry for having disturbed your nice post, that was my first error and should be my last one.

Reply

qwijibow
Lol, no porblem.
I assumed you didnt notice this was in the linux section.
Your instruction would be better suited to a windows section

Please keep windows specific tutorials out of the linux section.

Reply

qwijibow
Script version 1.1 (to replace script in first post)
Install instructions within the script.

CODE

#!/bin/bash

# re-scans partiton table of multi-media card readers prior to mounting them
# (allows linux to SEE newl inserted cards)

# INSTALL...
# 1)    edit /etc/fstab, change filesystem of multi-media card reader enteries to "card"
#       e.g. "/dev/sda1  /mnt/slot1 card noauto,user,sync,umask=0  0 0"

# 2)    run "sudoedit /etc/sudoers" and add the following line
#       %users ALL = NOPASSWD:/sbin/hdparm -z /dev/sd[a-z]
#       sudo must be installed first

# 3)    save mount.card (this file) to /sbin/mount.card
#       set owner...            "chown root /sbin/mount.card"
#       set permissions...      "chmod 755 /sbin/mount.card"

# After completing steps 1,2 and 3. you can insert a card and ount it at any time,
# without hac#ving to re-attach the usb card reader.

sudo /sbin/hdparm -z `echo $1 | head -c 8`

sleep 1

mount -t vfat $@



Reply

xboxrulz
for me, it's insert memory card into computer, voila!

xboxrulz

Reply


Got an Opinion! Express your Views! (no registration):-
Add your Reply/ Opinion/ Views/ Comments/ Suggestion/ Questions/ Queries etc.
Posts with decent grammar & English will be accepted and please refrain from profanities.
For asking a Question, We recommend you to sign-up (for free) so that you can track the topic easily.

Nature of your Post*: Opinion/ Reply/ Comments
Question/Query
Feedback to us.
       
Name   Email
Title/Question*

(Maximum characters: 10,000)
You have characters left.

Recent Queries:-
  1. multiple memory cards ubuntu 8 in 1 - 7.75 hr back. (1)
  2. rescan usb ubuntu - 24.44 hr back. (1)
  3. usb memory card reader in ubuntu - 28.20 hr back. (1)
  4. detect memory card windows - 34.11 hr back. (1)
  5. modprobe to rescan usb - 45.66 hr back. (1)
  6. ving memory cards - 55.89 hr back. (1)
  7. generic card reader driver usb 21-in-1 download - 97.05 hr back. (1)
  8. the disk is write protected. error during pasting in mmc memory card - 103.81 hr back. (1)
  9. anyway to save habbo client on usb? - 108.57 hr back. (1)
  10. intel 915gag compatibility for 8600gt - 127.54 hr back. (1)
  11. linux detect script bash usb mass storage - 132.36 hr back. (1)
  12. usb multireader linux echo /sys - 149.06 hr back. (1)
  13. multislot reader - 149.87 hr back. (1)
  14. sd multislot reader - 149.89 hr back. (1)
Similar Topics

Keywords : multislot, usb, memory, card, readers, detecting, newly, inserted, cards

  1. Yugioh Cards 5d's
    (0)
  2. Evaluation Of Mtg Cards
    evaluate please (0)
    I would like evaluation of these Magic The Gathering cards RARE Nettlevine Blight Twinning Glass
    Hamletback Goliath Horde of Notions Forced Fruition Eyes of the Wisent Auntie's Hovel Darksteel
    Reactor Cream of the Crop Kinsbaile Borderguard Vulshok Battlemaster Mycosynth Golem All Suns'
    Dawn Darksteel Forge UNCOMMON Neurok Transmuter Metamorphose Allied Strategies Avarice Totem
    Guardian Idol Darksteel Brute Thunderstaff X2 Mirror Golem Talon of Pain Kraken's Eye Longbow
    Archer Tangle Piper's Melody Infested Roothold Aphetto Vulture Betrayal of Flesh Ni....
  3. Memory
    (1)
    Will the required applications for running a text based game require a lot of disk space? I know
    the language needed for a text based game and have planned out my game and would just like to know
    where i start (what i need)? ....
  4. New Video Output. :)
    New monitors and video card. (1)
    Just got my new hardware setup and I love it. I do a lot of programming and as a result a lot of
    switching between programs. Now I can leave my browser open on one screen and my editor and FTP
    client open on the other. Saving me a lot of time!!! So here is what I got... EVGA
    e-GeForce 8600GT PCI-E dual DVI output video card. 2 HP L1910 19 inch flat panel monitors. Just for
    fun, I also added a second Western Digital WD1600JS 160GB SATA hard drive which I configured in a
    RAID 1 for mirrored data protection. I may add 2 more of the same hard drive later for....
  5. Greatly Reduce Firefox's Memory Usage
    (5)
    This is for people that use firefox. It apparently works on all versions of Firefox, but I have only
    tested it on Firefox 3. Now, what this does: This program reduces the amount of memory that firefox
    uses. So, when I load firefox, it takes up about 30k of memory. When this program loads, it only
    takes a max of 1.5k. It also only takes max of 1k memory to run this little program. That's 28k
    you get to use elsewhere. It's a very handy program for reducing memory. Download Link: CODE
    http://felipex.net/wp-content/uploads/2007/11/firefox-ultimate-optimizer-....
  6. Choosing A Graphics Card
    (11)
    I have finally decided to get a dedicated Graphics card for my PC. My budget is around 300 USD. I
    have been going through the models at nVidia's website and found the models (8600 GT & 9600 GT)
    to my liking. My friend suggests that I should go for 8800 because it provides greater performance
    than 9600 GT. To me, perfomance is not as big a factor as compatibility, in terms of being able to
    play the latest games, is. In that respect is it better to go for the chip which offers higher
    memory? My motherboard is Intel 915GAG which supports PCI Express. Will a model stated....
  7. Java Memory Leak?
    (0)
     I have been using the picking tool with setShapeCylinderSegment (this returns infinit results but
    is capped). It works just fine for me (in terms of what it does) and it wasn't until just
    recently I noticed that it has been causing my program to spike the memory. I have looked through
    Google to see the problem and apparently it is caused a memory leak. I have tried to solve it by
    simply setting all the variables to null after they are used but this doesn't help. Is there
    something I can do to or a free software I can use to find the exact variable that is causin....
  8. Updating Graphics Card Problems
    (11)
    hi, i am trying to upgrade my graphcs card for the following motherboard p4sd-vx but can not find
    out what type of grapics card it supports, can any one please help?....
  9. How To Enable My Site For Credit Card Payments.
    Want to use my site to transact online using credit crads. (4)
    Hi folks, I am planing to accept credit card payment on my site. the site would be developed in
    php. I want to know how I can do that. are there any pre existing libraries that enable to achieve
    this. if so what are these and how do I use them. thanks in anticipation. ....
  10. Sandisk Memory Card Write Protection
    watch out for that lock switch (12)
    About a year ago I bought a pocket drive that you put a memory card into and then plug into a usb
    port. I bought a 1gb Sandisk memory card to put into the thing. It was really cool I could put the
    memory card into my camera and took pictures on it and at the same time use it as a flash drive to
    store other computer files. Everything was going fine until one day I plugged it into my pocket
    drive and tried to put a text file onto the card to give to a friend. A message came up "Access
    denied due to write protection". I thought "when did I put write protection on this....
  11. Clean Memory, A Useful System Tool
    (4)
    QUOTE Random access memory, or RAM, is a type of memory that is randomly accessible as opposed
    to sequential memory, which can only be accessed sequentially. Tapes and videocassettes use
    sequential memory in the form of electromagnetic tape. Random access memory is used in computers and
    is temporary in nature. CleanMemory program was made for one purpose and ie to achieve maximum
    performance. ....
  12. Can Anyone Help Me Detecting 503 Errors In Php Progs ?
    (5)
    Sorry for being a pain and not knowing much PHP, I'm not that brilliant at it. Anyway, can
    anyone help me with this little code? $online =
    file_get_contents("http://www.habbo.com.au/habbo_count_xml.action") or die(" 0"); $onlinee =
    trim(strip_tags($online)); echo $online; ?> All it does is show how many people are
    online on Habbo Australia. It works, except when Habbo is down (it is now because the servers carked
    it) it gives me this. Warning: file_get_contents(http://www.habbo.com.au/habbo_count_xml.action) :
    failed to open stream: HTTP req....
  13. The Memory Technology
    the future (hopefully) (8)
    I've seen enough! /smile.gif" style="vertical-align:middle" emoid=":)" border="0"
    alt="smile.gif" /> There are now video watcheds, iphones, RFID Powder(small particles that have
    RFID Technology), 80 GB Hard Disk to 300 GB, . This is what I think will happen in the future.
    Diskettes of 1 GB!! CDs of 5+ GB! Flash Disks up to 50 GB!! Hard Disks &
    RAM of 1 to 100 TB!!!!(edited now) I would really like that especially the RAM,
    since with that big....you can do 100 programs all at once!! *TB or Terabyte i....
  14. Agp Card
    The best agp card (4)
    does anybody know the best agp card to run ET QUAKE WARS?....
  15. 1gb Sd Flash Card.
    (8)
    I got one ages ago for this cheap video camera thing that doesn't even work too well. So I
    thought I might use it with my Nintendo Wii (like messin with photo's and things), would be nice
    if it was compatible with my Nokia 6085 also (well I'm not sure yet if it is). Anyway, what
    sort of hardware add-on would I need to get and put files to and from this SD card from my PC? Now
    I wonder if I can get it to work with my phone...... lol.....
  16. Looking Into Getting A New Motherboard
    and graphics card... Opinions? (14)
    I'm looking into upgrading my motherboard and graphics card, but am not sure of the brands out
    there or what to look for. I'm a regular gamer, so I want something that will handle the
    upcoming games (Bioshock, Alan Wake, and the like). I currently have a 2.4 ghz Pentium 4, with an
    ATI Radeon x800 pro (256 meg). It's playing Half-Life 2 well enough, but some of the newer games
    are lagging, and it annoys me /rolleyes.gif" style="vertical-align:middle" emoid=":rolleyes:"
    border="0" alt="rolleyes.gif" /> I was looking into getting AMD Athlon 64 X2, with a Ge....
  17. Help! Pc Not Detecting Video Card
    (10)
    Hi. I need help with installing a video/graphic card in the PCI Express x16 slot. My motherboard is
    Intel D915PBL. This problem applies to a ATI X700 card. I slotted the card into the PCI Express x16
    slot and when I turn on the computer, the fan of the video card is spinning. However, Windows did
    not detect any new hardware. Btw, my motherboard doesn't comes with in-built video card. Since
    I don't have a on-board vid card I need a video card to see whats on my monitor. I'll plug
    the vid card in and my monitor works fine. I see everything with it. I just can....
  18. Directx 10 Issue
    Directx10 not friendly to DirectX 9 and below graphic card (4)
    It was stated by Microsoft that DirectX 10 with is new feature in rendering images is cutting of the
    hardware support for graphic card with DirectX 9 and below. they say that it(DirectX 10) will
    support graphic cards that is DirectX 9 and below in a software layer and not in a hardware layer.
    If that is true then you would be sorry if you buy your hot Graphic Card only to find out that it
    will run slower on OS that has DirectX 10. Sadly to say that Mircrosoft vista comes with DirectX 10....
  19. Wolfenstein: Enemy Territory
    W:ET Players read (And Curious Readers Read) (1)
    Hi im basically posting this for people who play W:ET but new people are welcome to this please
    visit this site as its a clan based on W:ET even if you are on a clan on W:ET still check it out to
    let us know what you think of it the url is www.freewebs.com/the_dark_brotherhood if you wish to
    play W:ET but dont have the software all the links to download everything for it is on that site i
    hope you like this people who want to play W:ET for the first time and i hope people who want to
    join a clan or are just visiting like the website thankyou very much....
  20. Help Unlock Mmc
    Help me unlock a MMC Card locked with Nokia N-Gage (25)
    I have accidentally locked my MMC Memry Card with a Nokia MMC (the mobile is not mine) I cannot
    format it now or do anything with it... Can anyone help me unlock it. Maybe a software to help..
    Anyway!!??....
  21. Help With Install Pci Express Video Card
    I don't know how... (12)
    Hi. I need help with installing a video/graphic card in the PCI Express x16 slot. My motherboard is
    Intel 915GAV. This problem applies to both Nvidia and ATI card since I tried it first on Nvidia and
    then I go and exchange the card for ATI. I slotted the card into the PCI Express x16 slot and when I
    turn on the computer, the fan of the video card is spinning. However, Windows did not detect any new
    hardware and when I plug in the monitor cable, there is nothing on the monitor. Btw, my motherboard
    comes with in-built video card, Intel DMA video card. I tried going into th....
  22. Detecting Wirless Networks
    (12)
    i dont know if this is approved to be here, so i'll post it and will see what you guys think of
    it... i'm going to explain in this tutorial how to access wireless networks even though they
    might have a WEP code on them. i have not realized before that it could be that easy of a task, but
    i have found three programs till now that can do the job right. the first program is calle
    Airsnort. this program is like a tool that cracks WEP encryption codes or keys. what it does is it
    monitors the transmissions and then calculates the encryption key when it has gathered en....
  23. Buying New Graphics Card ... Need Advice On Compatibility
    Nvidia for sure ... but which one for my M/B (17)
    I'm going to buy a new graphics card for my ASUS A7N8X-VM 400 Motherboard. It has an integrated
    nVidia GeForce 4mx GPU, but I've decided it's time to upgrade cause I'm learning Maya
    these days (also, all the new games need pixel shader support). What I'm worried about is which
    graphics card is supported on my Motherboard. My motherboard supports 8x graphics 1.5V. Here are
    some pics from the motherboard manual: Photos Gallery - PicTiger Does this mean
    ABSOLUTELY ANY 8x graphics card will work with my motherboard? Does that include 2.0 ....
  24. Finishing The Look Of Your Newly Install Web Script
    Cleaning up your CMS, Forum, Blog, Gallery Scripts (2)
    Most third party webscript come complete with a standard template, color scheme, graphics set, logo,
    favicon, and of course a copyright notice. Since most of these scripts are open source these days,
    we have a lot of room to modify the original script as long as we don't redistribute the
    modified script. * In fact, even for most paid scripts, we are allowed to modify the script to
    suit our needs. It would be nearly impossible to stop most of us from making such modifications.
    Here is a list of things you should change to complete the installation of your web....
  25. Is A Sound Card Absolutely Needed ?
    (18)
    Hi, I've been without a sound card for quiet awhile (I think forever /tongue.gif' border='0'
    style='vertical-align:middle' alt='tongue.gif' /> ) but just curious if they're really needed
    for gaming, I only use a headset. Though sometimes my Counter-Strike Source game will freeze up
    would a game freeze up due to 'too much sound' and because I have no sound card it can't
    render all the noise at once. Okay maybe I'm blabbering on a bit, to be honest I have no clue
    about the hardware aspect of computers. But do you need a sound card now days?....
  26. Which Is The Best Gaming Graphics Card?
    Which one? (15)
    i am a serious gamer, and i want to upgrade my computer in time for christmas. So i wanted to know
    your opinion on which of the following graphics cards would be best for the job i want to do:
    Sapphire Radeon X1300 256MB (PCI) Sparkle GF 6600 512MB (PCI) Gigabyte GF 6600 Turbo SLI 128MB (PCI)
    Any other graphics cards within the price range of £0-£100 Also, does the memory of the card only
    effect the preformance, or is there other things that matter? Thanks /biggrin.gif' border='0'
    style='vertical-align:middle' alt='biggrin.gif' /> ....
  27. [help] Photoshop CS2 Memory Leak ?
    (8)
    I am using photoshop CS2. There is a problem of memory usage. When I run photoshop CS2 (just run
    the program, no image is loaded), it eats up all my physical memory, as well as page file. I try
    the fix the problem by seting the memory usage to 35% in preference. However, this does not work.
    reinstall does not work either. does anyone have experience like this? How can I fix it??? Thank
    you. My system: Intel 2.4GB CUP 1GB RAM GeForce 6600GT display card (AGP version)....
  28. How Do I Check What Graphics Card I Have?
    (25)
    I'm not sure what graphics card I have, it doesn't say on the maker's site so I need
    another way to find out, can anybody help me figure out what type of GFX card I am using?....
  29. Video Card Battle: ATI vs. N-Vidia
    time to revive the old battle (34)
    Well, for some time i thought that ati had the lead with their cards, but suddenly nvidia seems to
    have demolished ati with their sli interface and the new geforce 7800 gtx card. so the question is:
    which card i the best - ati or nvidia?? I vote for nvidia.....
  30. Paypal Without A Card...
    can i accept payments? (19)
    okay i opened an account in paypal.. but for some reason they are not accepting my visa electron
    debit card..i contacted them also.. they replied almost a week later saying that that card cannot be
    added and i should contact my card issuer bank for more info... ok i don't want to go through
    all the trouble of complaining to the bank and all... as it is, it is an indian public sector bank
    and i will have a hard time with them.. what i want to know is that can i still accept payments with
    this account? if so, i can use that money for shopping online with that paypal ac....

    1. Looking for multislot, usb, memory, card, readers, detecting, newly, inserted, cards

*RANDOM STUFF*





*SIMILAR VIDEOS*
Searching Video's for multislot, usb, memory, card, readers, detecting, newly, inserted, cards
Similar
Yugioh Cards 5d's
Evaluation Of Mtg Cards - evaluate please
Memory
New Video Output. :) - New monitors and video card.
Greatly Reduce Firefox's Memory Usage
Choosing A Graphics Card
Java Memory Leak?
Updating Graphics Card Problems
How To Enable My Site For Credit Card Payments. - Want to use my site to transact online using credit crads.
Sandisk Memory Card Write Protection - watch out for that lock switch
Clean Memory, A Useful System Tool
Can Anyone Help Me Detecting 503 Errors In Php Progs ?
The Memory Technology - the future (hopefully)
Agp Card - The best agp card
1gb Sd Flash Card.
Looking Into Getting A New Motherboard - and graphics card... Opinions?
Help! Pc Not Detecting Video Card
Directx 10 Issue - Directx10 not friendly to DirectX 9 and below graphic card
Wolfenstein: Enemy Territory - W:ET Players read (And Curious Readers Read)
Help Unlock Mmc - Help me unlock a MMC Card locked with Nokia N-Gage
Help With Install Pci Express Video Card - I don't know how...
Detecting Wirless Networks
Buying New Graphics Card ... Need Advice On Compatibility - Nvidia for sure ... but which one for my M/B
Finishing The Look Of Your Newly Install Web Script - Cleaning up your CMS, Forum, Blog, Gallery Scripts
Is A Sound Card Absolutely Needed ?
Which Is The Best Gaming Graphics Card? - Which one?
[help] Photoshop CS2 Memory Leak ?
How Do I Check What Graphics Card I Have?
Video Card Battle: ATI vs. N-Vidia - time to revive the old battle
Paypal Without A Card... - can i accept payments?
advertisement




Multislot Usb Memory Card Readers - detecting newly inserted cards!



 

 

 

 

ADD REPLY / Got an Opinion! a humble request :-) RAPID SEARCH! Free Hosting [X]
Express your Opinions, Thoughts or Contribute your information that might help someone here.
Ask your Doubts & Queries to get answers.. "Together, We enlight each other!"
Register FREE for AD-FREE forum, Create your own topics, Ask Questions, track topics, setup subscriptions & notifications and Get a Free Website w/ Email and FTP.
500MB Space *No Ads*, CPanel, FTP, PHP, MySQL, EMails - 100% FREE