Enabling SSH in Ubuntu
# Update Packages
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
# Reboot the computer and see if SSH runs on reboot:
sudo systemctl status ssh
No Comments