apt update apt install openssh-server
systemctl start sshd.service
systemctl enable sshd.service
Modify /etc/ssh/sshd_config:
... PermitRootLogin without-password to PermitRootLogin yes ...
Restart SSH Service:
service ssh restart