Home Lab Home!
In this section, you will find information about my home lab, including the services I am running.
New Server Stand-Up Check List
- Update & Upgrade
sudo apt update && sudo apt upgrade -y
- Set Timezone
sudo timedatectl set-timezone America/Denver
- Set Hostname
sudo hostnamectl set-hostname <hostname>
- Remove snapd
sudo apt remove snapd -y
- Install packages
sudo apt install git curl wget whois python3-full pydf speedtest-cli fail2ban -y
- Setup New Users
sudo useradd -m mattsudo usermod -aG sudo mattsudo passwd matt
- Enable Auto-Updates
sudo dpkg-reconfigure unattended-upgrades
sudo ufw default deny incoming
sudo ufw default allow outgoing
sudo ufw logging on
sudo ufw allow in on tailscale0
sudo ufw allow ssh
sudo ufw allow http
sudo ufw allow 80/udp
sudo ufw allow https
sudo ufw allow 443/udp
sudo ufw enable