Created
April 25, 2018 19:37
-
-
Save rosado/cd23f882c060a5462b64599d9ae2bba6 to your computer and use it in GitHub Desktop.
kismet on r-pi setup instructions
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt-get install git-core build-essential | |
sudo apt-get install libncurses5-dev libpcap-dev libpcre3-dev libnl-dev libmicrohttpd12 libmicrohttpd-dev | |
wget http://kismetwireless.net/code/kismet-2016-07-R1.tar.xz | |
tar -xvf kismet-2016-07-R1.tar.xz | |
cd kismet-2016-07-R1 | |
./configure | |
make | |
sudo make suidinstall | |
sudo groupadd kismet | |
sudo usermod -a -G kismet pi | |
sudo mkdir -p /usr/local/lib/kismet/ | |
mkdir -p /home/pi/.kismet/plugins/ | |
sudo mkdir -p /usr/lib/kismet/ | |
sudo reboot | |
# wireless interface manufacturer list | |
sudo mkdir -p /usr/share/wireshark/ | |
cd /usr/share/wireshark/ | |
sudo wget -O manuf http://anonsvn.wireshark.org/wireshark/trunk/manuf | |
sudo cp manuf /etc/manuf |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment