Files
dotfiles/Scripts/Ubuntu.sh
2023-02-18 20:53:22 -03:00

32 lines
525 B
Bash

#!/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 \
ca-certificates \
curl \
git \
gzip \
htop \
iputils-ping \
lsb-release \
nano \
neofetch \
net-tools \
qemu-guest-agent \
tar \
ufw \
unzip \
wget
# Firewall
sudo ufw allow "OpenSSH"
sudo ufw enable