Enabling SSH in Ubuntu
# UbuntuUpdate enable sshPackages
sudo apt update -y
# Install Open SSH Server
sudo apt install openssh-server
# Make sure it says active (running) in green
sudo systemctl status ssh
# Enable SSH to start automatically on boot
sudo systemctl enable ssh