Install EZ100PU/EZMINI Smart Card Reader Driver for Linux

mail
Cyrus Kao
Last modified

The USB chip/smart card reader EZ100PU/EZMINI doesn't provide driver for Linux by default. But with a little digging on the Internet, I found a driver for both EZ100PU and EZMINI on Github.

EZ100PU
Smart card reader EZ100PU

Installation

clone the repository:

git clone https://github.com/chihchun/ez100pu.git
Bash

cd into the directory:

cd ez100pu
Bash

To install the driver:

  • 32-bit

    cd driver_ezusb_v1.5.3
    ./install
    Bash
    /dev/bus/usb Detected
    USB Device File System Ready!
    PC/SC Daemon Found!
    PC/SC Driver Location - /usr/lib/pcsc
    Reader Installation Successfully!
    Please reboot your system.
    Output

    Change 1.5.3 to newer version if released.

  • 64-bit

    cd driver_ezusb_v1.5.3_for_64_bit
    ./install
    Bash
    /dev/bus/usb Detected
    USB Device File System Ready!
    PC/SC Daemon Found!
    PC/SC Driver Location - /usr/lib/pcsc
    Reader Installation Successfully!
    Please reboot your system.
    Output

    Change 1.5.3 to newer version if released.

Then reboot your machine:

sudo reboot
Bash

See Also

Comments

0500