Skip to content

Instantly share code, notes, and snippets.

@azole
Created July 2, 2024 08:34
Show Gist options
  • Save azole/f0fdfd6fd54c369ef9ee50469299ccbd to your computer and use it in GitHub Desktop.
Save azole/f0fdfd6fd54c369ef9ee50469299ccbd to your computer and use it in GitHub Desktop.
upgrade ssh command
ssh -V
OpenSSH_8.9p1 Ubuntu-3ubuntu0.10, OpenSSL 3.0.2 15 Mar 2022
wget https://cdn.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-9.8p1.tar.gz
tar -zxvf openssh-9.8p1.tar.gz
cd openssh-9.8p1/
sudo apt-get install -y build-essential
sudo apt install zlib1g-dev
sudo apt install libssl-dev
#sudo apt install -y openssl
./configure
make
sudo make install
ssh -V
OpenSSH_9.8p1, OpenSSL 3.0.2 15 Mar 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment