Last active
January 3, 2017 10:47
-
-
Save mtngld/b7bb1ce59cc6d14b2ca2 to your computer and use it in GitHub Desktop.
Upgrade openssh on ubuntu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
wget https://launchpad.net/openssh/main/6.9p1/+download/openssh-6.9p1.tar.gz | |
tar -xvf openssh-6.9p1.tar.gz | |
cd openssh-6.9p1/ | |
./configure --prefix=/usr --sysconfdir=/etc/ssh --with-md5-passwords --with-privsep-path=/var/lib/sshd | |
sudo make install | |
sshd -V |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment