(01)Install SSH server
Linux
1# Ubuntu / Debian2sudo apt-get update3sudo apt-get install -y openssh-server4 5# RHEL / CentOS / Fedora6sudo dnf install -y openssh-server7 8# Enable and start9sudo systemctl enable sshd10sudo systemctl start sshd