Skip to Content
Last repository update 9/13/2025 🎉
DocsSSHInstallation

SSH Installation

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