The SSH server is not installed by default on Ubuntu desktop systems but it can be easily installed from the standard Ubuntu repositories.
To install and enable SSH on your Ubuntu system complete the following steps:
Open your terminal either by using the Ctrl+Alt+T
keyboard shortcut or by clicking on the terminal icon and install the openssh-server
package by typing:
sudo apt update
sudo apt install openssh-server
Once the installation is completed, the SSH service will start automatically. To verify that the installation was successful and SSH service is running type the following command which will print the SSH server status:
sudo systemctl status ssh
Ubuntu comes with a firewall configuration tool called UFW. If the firewall is enabled on your system, make sure to open the SSH port:
sudo ufw allow ssh
Once you’ve found the IP address, login to remote machine by running the following ssh
command:
ssh user@ip
If you don’t know your IP address you can easily find it using the this
ip a
Question: How to downgrade the Perl
Abhi 102 days ago, Questions (1)
Question: Alienomics error, how to fix it !
Question: What is the p-value?
BioStar 243 days ago, Questions (1)
Question: Unable to restart Apache !
LEGE 494 days ago, Questions (2)