By default, SSH is not enabled on Ubuntu 17.10 desktop edition. So, it is not possible for you to connect to your Ubuntu 17.10 desktop from another computer via SSH. We need to install and enable ssh on Ubuntu 17.10. But don’t worry, it is pretty easy to enable the SSH. First, we need to install ssh on Ubuntu 17.10.
Install SSH on Ubuntu 17.10
sudo apt install ssh
Output:
Now start and enable SSH
sudo systemctl start ssh
sudo systemctl enable ssh
Done.
Leave a Reply