Linux

How can you enable ssh on Kali or parrot sec?

Hi guys in this post, I’ll show you how to enable ssh on Kali or parrot.

First install “openssh-server”, with the following command:

sudo apt-get install openssh-server

Verify the service, with the following command:

sudo systemctl status ssh

Start the service, with the following command:

sudo systemctl start ssh

Verify the service again.

To made persistent after reboot the ssh enable the service, with the following command.

sudo systemctl enable ssh
Standard

Leave a comment