SSH Installation
More Information
For Windows Users: Enable WSL and SSH into Windows with Bash.
Get started with OpenSSH for WindowsÂ
Install SSH on Linux
sudo apt-get update
sudo apt-get install -y openssh-client openssh-server
sudo systemctl enable ssh
sudo systemctl start ssh
# you can trigger either one will do
sudo systemctl status ssh
sudo systemctl status sshd
You can find all the files under /home/<username>/.ssh
Last updated on