Skip to main content

SSH

SSH stands for Secure Shell, a protocol that allows you to communicate with a computer securely from a remote location.

How to use SSH (client)

Install

sudo pacman -S openssh

Key Generation

Generate a key with ssh-keygen.

ssh-keygen -t ed25519

By default, the public key id_[algorithm].pub and the private key id_[algorithm] are created in ~/.ssh/. You can communicate without password authentication by registering a public key with the SSH server.