Skip to content

Instantly share code, notes, and snippets.

@AkashMartin1
Forked from techgaun/readme.md
Last active November 14, 2017 10:14
Show Gist options
  • Save AkashMartin1/5c6fc6c8456e99ab7790b31615612194 to your computer and use it in GitHub Desktop.
Save AkashMartin1/5c6fc6c8456e99ab7790b31615612194 to your computer and use it in GitHub Desktop.
OpenSSH 7.4 on Ubuntu 14.04

Installing OpenSSH 7.4 on Ubuntu 14.04

sudo apt install -y build-essential libssl-dev zlib1g-dev
wget "https://fastly.cdn.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-7.4p1.tar.gz"
tar xfz openssh-7.4p1.tar.gz
cd openssh-7.4p1
./configure
make
sudo make install && sudo service ssh restart && ssh -V
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment