meta data for this page
  •  

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
rfid:proxmark3 [2022/01/05 08:17] – created niziakrfid:proxmark3 [2026/01/12 11:00] (current) niziak
Line 2: Line 2:
  
 <code bash> <code bash>
-apt install libpcsclite-dev libbz2-dev+apt install libpcsclite-dev libbz2-dev liblz4-dev
  
 git clone https://github.com/RfidResearchGroup/proxmark3 git clone https://github.com/RfidResearchGroup/proxmark3
Line 8: Line 8:
 make clean make clean
 echo 'PLATFORM=PM3GENERIC' > Makefile.platform echo 'PLATFORM=PM3GENERIC' > Makefile.platform
-make SKIPBT=1 all -j+make SKIPBT=1 all -j $(nproc)
 </code> </code>
  
Line 19: Line 19:
 mkdir build mkdir build
 cd build cd build
-qmake ../ +qmake ../src 
-make+make -j $(nproc)
 cp -r ../lang ./ cp -r ../lang ./
 cp -r ../config ./ cp -r ../config ./
 ./Proxmark3GUI ./Proxmark3GUI
 </code> </code>