Page 1 of 1

Install R502 reader under CentOS

Posted: Thu Sep 01, 2016 11:05 pm
by Elisadl
Does anyone know how to install the smartcard reader R502 driver under CentOS? It seems that it can not recognize the reader.

Re: Install R502 reader under CentOS

Posted: Fri Sep 02, 2016 3:17 am
by Marshaldll
Take CentOS Linux 7 as an example:

1. Install pcsc-lite:
sudo yum install pcsc-lite

2. Start pcscd service is started.
sudo service pcscd start

3. Install ccid drive.
sudo yum install pcsc-lite-ccid

After this, restart pcscd service:
sudo service pcscd restart

4. Install pcsc_scan

> Download pcsc-tools
http://ludovic.rousseau.free.fr/softwares/pcsc-tools/pcsc-tools-1.4.27.tar.gz

> Unzip pcsc-tools-1.4.27.tar.gz
tar xvf pcsc-tools-1.4.27.tar.gz

> Go to source code directory
cd pcsc-tools-1.4.27

> Compile
make

> Execute pcsc_scan
./pcsc_scan

Hope this can help you.