Enable SSH in Linux Mint
In this post I am going to share steps how to enable ssh on Linux Mint
1) Open Terminal
2) Install OpenSSH Server
sudo apt-get install openssh-server -y
If you are doing via root then sudo keyword is not required.
3) Check OpenSSH Status
#systemctl is-enabled ssh
if it show disabled then
do below
#systemctl enable ssh
4) Check ssh is active and running
#systemctl is-active ssh
#systemctl status sshd
Post a Comment
Post a Comment