Linux admin basics
Created: 2025-05-31 16:40:59 | Last updated: 2025-05-31 16:43:21 | Status: Public
Really should just make this a script
Set hostname : sudo hostnamectl set-hostname YOURNAME
Add user : adduser ill13
Add user to sudo : usermod -aG sudo ill13
Setup SSH:
apt update
apt install openssh-server
systemctl enable ssh
systemctl start ssh