diff options
Diffstat (limited to 'run.sh')
-rw-r--r-- | run.sh | 39 |
1 files changed, 39 insertions, 0 deletions
@@ -0,0 +1,39 @@ +#!/bin/sh +clear +echo "####################" +echo "# WEBSERVER RUNNER #" +echo "# »» hitler.rip «« #" +echo "####################" +echo +echo "[run] Note:" +echo "[run] this script assumes you already have an openssh server set up." +echo + +sudo apt update +sudo apt upgrade -y + +sudo apt install -y sudo vim git curl wget btop + +# ADDITIONAL PACKAGES: +# lvm cryptsetup +# bind (nslookup) traceroute gnu-netcat +# man-pages man-db +# rsync +# ed bc +# nodejs npm +# unrar-free zip unzip +# smartmontools + +# WITH CONFIG: +# tmux +# my shell script +# fzf bat eza +# (vim btop) + +# ALSO: +# ufw +# fail2ban +# nginx + +sudo usermod -aG sudo "$(whoami)" + |