From 268cd87c431bd118d5d27393f49f1e8cabc9f208 Mon Sep 17 00:00:00 2001 From: jontino tinerino Date: Fri, 12 Apr 2024 00:17:38 -0400 Subject: [PATCH] added nmap install command --- pi/pi_setup.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pi/pi_setup.sh b/pi/pi_setup.sh index e7d6fc1..c725784 100755 --- a/pi/pi_setup.sh +++ b/pi/pi_setup.sh @@ -1,7 +1,7 @@ # ======================================================================== # Auth: alex # File: setup.sh -# Revn: 07-11-2023 0.3 +# Revn: 09-23-2023 1.0 # Func: automate pi setup # # TODO: get addnet/pipe to bash stuff to work @@ -18,6 +18,7 @@ # empty and refill /etc/motd # enabled ssh? # fixed typo in golang download, had one, wanted L +#*09-23-2023: added command to install nmap # # ======================================================================== @@ -36,6 +37,9 @@ sudo apt install -y tmux # install tshark sudo apt install -y tshark +# install nmap +sudo apt install -y nmap + # install golang wget https://dl.google.com/go/go1.14.4.linux-armv6l.tar.gz sudo tar -C /usr/local -xzf go1.14.4.linux-armv6l.tar.gz