Forked from roommen/OpenSSH Update Script - Amazon Linux 2
Created
July 29, 2022 14:42
-
-
Save jdaviderb/43ded5e0d04b558fe2e6f91004ba978d to your computer and use it in GitHub Desktop.
OpenSSH Update Script - Amazon Linux 2
This file contains 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
#!/bin/bash | |
sudo yum install gcc -y | |
sudo yum install openssl-devel -y | |
sudo yum install zlib-devel -y | |
sudo yum install mlocate -y | |
sudo yum install autoconf -y | |
wget https://cdn.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-8.2p1.tar.gz | |
tar zxvf openssh-8.2p1.tar.gz | |
cd openssh-8.2p1 && ./configure && make && sudo make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment