Skip to content

Instantly share code, notes, and snippets.

View BT-nsanchez's full-sized avatar
🏠
Working from home

Noah Sanchez Geurts BT-nsanchez

🏠
Working from home
View GitHub Profile
@BT-nsanchez
BT-nsanchez / initial_install.sh
Last active May 8, 2025 06:55
Initial Instalation
#!/bin/bash
export DEBIAN_FRONTEND=noninteractive
export LANGUAGE=en_US.UTF-8
export LC_ALL=en_US.UTF-8
export LANG=en_US.UTF-8
mainuser=$(grep 1000 /etc/passwd | cut -d":" -f1)
# System update
apt-get -q -y update
apt-get -q -y upgrade