From 0fee4f871ac179bf9e3c1cba8da7a73684889ea5 Mon Sep 17 00:00:00 2001 From: Aney Date: Sat, 26 Dec 2020 22:08:15 +0000 Subject: [PATCH] Changes to install script, again... --- installs/install.sh | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/installs/install.sh b/installs/install.sh index 187e2db..7698bd9 100755 --- a/installs/install.sh +++ b/installs/install.sh @@ -16,13 +16,26 @@ apt update && upgrade -y adduser nathan sudo # Terminal shit -apt install git tig zsh tmux vim neofetch htop wget curl -y +apt install perl tmux vim neofetch htop wget -y +apt install git tig zsh curl -y + +# Firewall +apt install ufw -y +systemctl --now enable ufw +ufw enable +ufw default deny incoming +ufw default allow outgoing +ufw allow 22 +# ufw status # Additional filesystem stuff -apt install cifs-utils jmtpfs thunar -y +apt install cifs-utils jmtpfs nemo -y + +# Tools +apt install gzip zip tar -y # Mail -apt install neomutt -y +apt install neomutt thunderbird -y # Bluetooth apt install blueman -y