proxmark3-web/install-all.sh

16 lines
701 B
Bash
Raw Permalink Normal View History

2019-10-19 10:20:14 +08:00
#!/bin/bash
2019-11-01 10:14:47 +08:00
# this script will install proxmark3-rdv4 on a raspiberry pi, and all the things.
2019-10-19 10:20:14 +08:00
sudo apt-get update && sudo apt-get -y install --no-install-recommends git ca-certificates build-essential pkg-config \
2019-10-29 08:25:21 +08:00
libreadline-dev gcc-arm-none-eabi libnewlib-dev python3-flask python3-flask-sqlalchemy hostapd dnsmasq python3-pip python3-dateutil python3-dateparser libev-dev gunicorn3 && \
2019-10-28 06:27:40 +08:00
sudo pip3 install --upgrade pip && \
sudo pip3 install datetime && \
2019-10-29 07:15:54 +08:00
sudo pip3 install Flask-Babel && \
2019-10-19 11:00:27 +08:00
cd ~ && git clone https://github.com/RfidResearchGroup/proxmark3.git &&\
2019-10-19 10:20:14 +08:00
cd ~/proxmark3/ && git pull && make clean && make all && sudo make install &&\
cd ~/proxmark3-web && \
2019-10-29 08:25:21 +08:00
./rpi-setup.sh
2019-10-19 10:20:14 +08:00
./install.sh