Skip to content

Instantly share code, notes, and snippets.

@shynome
Forked from techgaun/readme.md
Last active March 5, 2018 02:40
Show Gist options
  • Save shynome/7135a0dfe2b8eb1c8567797e6b31820a to your computer and use it in GitHub Desktop.
Save shynome/7135a0dfe2b8eb1c8567797e6b31820a to your computer and use it in GitHub Desktop.
OpenSSH 7.4 on Ubuntu 16.04

Installing OpenSSH on Ubuntu 16.04

version='7.4'
sudo apt install -y build-essential libssl-dev zlib1g-dev
wget "http://mirrors.evowise.com/pub/OpenBSD/OpenSSH/portable/openssh-${version}p1.tar.gz"
tar xfz openssh-${version}p1.tar.gz && cd openssh-${version}p1
./configure
make
sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment