Skip to content
Jason Hempstead edited this page Aug 21, 2020 · 1 revision

OpenSSH

Secure SHell is a program for logging into and executing commands on a remote machine

requires:

apt install openssh openssh-server
yum install openssh openssh-server
pacman -S openssh

Automatic install/update:

sudo bash -c "$(curl -LSs https://github.com/casjay-dotfiles/ssh/raw/master/install.sh)"

Manual install:

sudo git clone https://github.com/casjay-dotfiles/ssh "/usr/local/etc/ssh"
sudo ln -sf /usr/local/etc/ssh/sshd_config /etc/ssh/sshd_config
sudo systemctl enable --now sshd

OpenSSH wiki | OpenSSH site

Clone this wiki locally