From cc726da722b1e36c29525ee927c523d672ade7d5 Mon Sep 17 00:00:00 2001 From: Werner Date: Fri, 17 Feb 2023 21:11:24 -0300 Subject: [PATCH] Create Ubuntu.sh --- Scripts/Ubuntu.sh | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 Scripts/Ubuntu.sh diff --git a/Scripts/Ubuntu.sh b/Scripts/Ubuntu.sh new file mode 100644 index 0000000..1feade5 --- /dev/null +++ b/Scripts/Ubuntu.sh @@ -0,0 +1,34 @@ +#!/usr/bin/env sh + +export DEBIAN_FRONTEND=noninteractive + +# Update + +sudo DEBIAN_FRONTEND=noninteractive apt update && sudo DEBIAN_FRONTEND=noninteractive apt upgrade -y + +# Dependencies + +sudo DEBIAN_FRONTEND=noninteractive apt install -y --no-install-recommends \ + bash \ + ca-certificates \ + curl \ + git \ + gnupg \ + gzip \ + htop \ + iputils-ping \ + lsb-release \ + nano \ + neofetch \ + net-tools \ + python3 \ + qemu-guest-agent \ + tar \ + ufw \ + unzip \ + wget + +# Firewall + +sudo ufw allow "OpenSSH" +sudo ufw enable