是否可以在Raspbian OS上安装pcsc-lite 1.8.13?

时间:2015-04-23 20:58:46

标签: linux debian raspberry-pi raspbian pcsc

我正在开发一个Raspberry Pi项目。我正在尝试为ACR1251U-A1 NFC标签安装driver package

此软件包首先需要安装pcsc-lite软件包。但据我所知,在互联网上搜索后,pcsc-lite 1.8.13不适用于Raspbian OS。

我的主管坚持认为应该在Raspberry Pi上安装pcsc-lite 1.8.13以使NFC标签正常工作。

是否可以将其安装在Raspbian上?如果是这样,你能帮我怎么做吗?

1 个答案:

答案 0 :(得分:2)

我可以使用Raspberry Pi B +和Raspberry Pi 2在Raspbian(pcscd)上安装pcsc-lite守护程序并使用Linux raspberrypi 3.18.11-v7+ #781 SMP PREEMPT Tue Apr 21 18:07:59 BST 2015 armv7l GNU/Linux wrapper in NodeJS

此处摘自full guide of mine project on GitHub

中的需求安装
  
      
  1. 安装PC / SC和libnfc(参考:nfc-toolslibnfc):

    sudo apt-get install pcscd libusb-dev libpcsclite1 libpcsclite-dev dh-autoreconf
    
    cd /opt/
    sudo wget https://github.com/nfc-tools/libnfc/archive/libnfc-1.7.1.zip
    sudo unzip libnfc-1.7.1.zip
    cd libnfc-libnfc-1.7.1/
    sudo autoreconf -vis
    sudo ./configure --with-drivers=all
    sudo make
    sudo make install
    
         

    另外,您可能需要向用户授予驱动设备的权限。   在GNU / Linux系统下,如果使用udev,则可以使用提供的udev规则。       例如在Debian下:sudo cp /opt/libnfc-libnfc-1.7.1/contrib/udev/42-pn53x.rules /lib/udev/rules.d/

  2.   
  3. 确保正确识别NFC阅读器:

    sudo nfc-list
    
         
        
    1. 要修复:error while loading shared libraries: libnfc.so.4: cannot open shared object file: No such file or directoryreference

      echo '/usr/local/lib' | sudo tee -a /etc/ld.so.conf.d/usr-local-lib.conf && sudo ldconfig
      
    2.   
    3. 如果你有内核版本> 3.5,可能会pcscd以及nfc-list报告此错误:Unable to claim USB interface (Device or resource busy)由于pn533驱动程序的自动加载。

           

      要阅读pcscd dameon输出,您可以使用以下代码运行它:pcscd -f -d

           
          
      1. 检查安装了哪个内核版本:uname -a
      2.   
      3. 黑名单pn533nfc驱动程序(参考:Arch Linux wiki Touchatag RFID Readernfc-tools forum):

        sudo nano /etc/modprobe.d/blacklist-libnfc.conf
        
             

        添加以下行:

             

        黑名单pn533       黑名单nfc

      4.   
      5. 禁用内核模块:

        modprobe -r pn533 nfc
        
      6.   
      7. 重新启动pcscd守护程序:sudo service pcscd restart

      8.   
    4.   
  4.