How to Install SSH Server on Ubuntu 14.04
In this tutorial we are going to learn how to install ssh server on Ubuntu 14.04.
In Ubuntu Linux ssh server provides by the openssh-server package. We can install Ubuntu openssh-server package using apt-get install command.
apt-get install openssh-server
Then start the ssh server using service command.
service ssh start
Then run the netstat command to make sure that SSH port 22 is listening on Ubuntu.
netstat -tulnp | grep ssh
This is the method used to install ssh server on both Ubuntu desktop and Ubuntu server.