Ubuntu / Debian: Update SSH from source

Locked
User avatar
Mihai Romania
Posts: 60
Joined: 2023 May 03, 14:12
Location: ROMANIA
Contact:

Ubuntu / Debian: Update SSH from source

Post by Mihai »

For Ubuntu/Debian:

Install dependencies:

Code: Select all

sudo apt install build-essential zlib1g-dev libssl-dev  -y
Download the SSH package:

Code: Select all

wget https://cloudflare.cdn.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-9.8p1.tar.gz
Extract the package from archive:

Code: Select all

tar xzvf openssh-9.8p1.tar.gz
Call directory extracted:

Code: Select all

cd openssh-9.8p1
Compile and Install from source:

Code: Select all

./configure
make
make install
After install check the SSH version:

Code: Select all

ssh -V

Open SSH default Home Page - Link
Open SSH Releases for other systems - Link
I'm on LinkedIn
Locked