升级openssl和openssh的shell脚本是怎样的
升级openssl和openssh的shell脚本是怎样的
升级openssl和openssh的shell脚本非常简单。首先,使用wget下载最新的openssl和openssh源码包。然后,解压源码包,进入相应的目录,执行./configure, make, make install命令。最后,重新启动openssh服务器。
下面是一个例子:
# wget https://www.openssl.org/source/openssl-1.0.2l.tar.gz
# tar -xzvf openssl-1.0.2l.tar.gz
# cd openssl-1.0.2l
# ./config
# make
# make install
# /etc/init.d/ssh restart
相关文章