mirror of
https://github.com/videoman/proxmark3-web.git
synced 2024-12-26 17:33:32 +08:00
15 lines
701 B
Bash
Executable file
15 lines
701 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# this script will install proxmark3-rdv4 on a raspiberry pi, and all the things.
|
|
|
|
sudo apt-get update && sudo apt-get -y install --no-install-recommends git ca-certificates build-essential pkg-config \
|
|
libreadline-dev gcc-arm-none-eabi libnewlib-dev python3-flask python3-flask-sqlalchemy hostapd dnsmasq python3-pip python3-dateutil python3-dateparser libev-dev gunicorn3 && \
|
|
sudo pip3 install --upgrade pip && \
|
|
sudo pip3 install datetime && \
|
|
sudo pip3 install Flask-Babel && \
|
|
cd ~ && git clone https://github.com/RfidResearchGroup/proxmark3.git &&\
|
|
cd ~/proxmark3/ && git pull && make clean && make all && sudo make install &&\
|
|
cd ~/proxmark3-web && \
|
|
./rpi-setup.sh
|
|
./install.sh
|
|
|