Last active
December 26, 2015 02:28
-
-
Save wethinkagile/7078316 to your computer and use it in GitHub Desktop.
Build RPM of OpenSSH 5.6 for CentOS
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
rpm -qa | grep ssh | |
yum -y install gcc automake autoconf libtool make openssl-devel pam-devel rpm-build | |
wget http://ftp.halifax.rwth-aachen.de/openbsd/OpenSSH/portable/openssh-5.6p1.tar.gz | |
wget http://ftp.halifax.rwth-aachen.de/openbsd/OpenSSH/portable/openssh-5.6p1.tar.gz.asc | |
wget -O- http://ftp.halifax.rwth-aachen.de/openbsd/OpenSSH/portable/DJM-GPG-KEY.asc | gpg --import | |
gpg openssh-5.6p1.tar.gz.asc | |
tar zxvf openssh-5.6p1.tar.gz | |
cp openssh-5.6p1/contrib/redhat/openssh.spec /usr/src/redhat/SPECS/ | |
cp openssh-5.6p1.tar.gz /usr/src/redhat/SOURCES/ | |
cd /usr/src/redhat/SPECS/ | |
perl -i.bak -pe 's/^(%define no_(gnome|x11)_askpass)\s+0$/$1 1/' openssh.spec | |
rpmbuild -bb openssh.spec | |
cd /usr/src/redhat/RPMS/`uname -i` | |
uname -i | |
ls -l | |
rpm -Uvh openssh*rpm | |
/etc/init.d/sshd restart |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment