发布于 2017-03-18 15:12:28
该项目现在托管在Github上:
git clone https://github.com/nfc-tools/mfoc.git
cd mfoc
autoreconf -vis
./configure
sudo make
sudo make install
发布于 2016-02-21 09:34:07
cd
进入您的克隆回购目录。
那就跑,
./configure
和修复依赖关系问题(如果有的话)。那就跑,
make
make install
发布于 2016-02-21 10:00:45
在开发人员网站上的.pdf中,下面是如何在Ubuntu上安装MFOC。
首先,我们需要添加一些依赖项
sudo apt-get install checkinstall build-essentials
现在获取并安装此版本
wget http://code.google.com/p/nfc-tools/downloads/detail?name=mfoc-0.10.2.tar.gz
tar -xzvf mfoc-0.10.2.tar.gz
cd mfoc-0.10.2
autoreconf -vis
./configure
sudo make
您可以在这里使用./mfoc -O card_dump
,也可以使用checkinstall
将其打包并安装到系统中。
sudo checkinstall
mfoc -O card_dump
https://askubuntu.com/questions/737300
复制相似问题