zoukankan      html  css  js  c++  java
  • openssh升级过程

    ssh升级步骤
    =================
    安装zlib
    =================
    下载安装包
    tar zxvf zlib-1.2.8.tar.gz
    cd zlib-1.2.8
    ./configure --presix=/usr/local/zlib
    make
    make install


    =======================
    安装openssl
    =======================
    下载安装包
    tar tar zxvf openssl-1.0.2d.tar.gz 
    cd openssl*
     ./config --prefix=/usr --openssldir=/etc/ssl --libdir=lib shared no-zlib
    make 
    make install


    查看版本号 openssl version


    ======================
    安装ssh
    ======================
    下载安装包
    tar zxvf openssh-*
    cd openssh*
    ./configure --prefix=/usr --sysconfdir=/etc/ssh --with-md5-passwords --with-privsep-path=/var/lib/sshd --with-zlib=/usr/local/zlib/


    make
    make install
    查看openssh版本号,验证安装结果
    ssh -V




    ========================
    启动ssh服务
    ========================
    /sbin/service sshd start
    查看ssh服务
    ssh -d



















  • 相关阅读:
    kali 所有版本
    kali有关问题及kali2018.2安装
    python2
    burpsuite 破解教程
    python生成个性二维码
    万能密码
    python 1
    python
    python 第三方库安装
    Androidstdio 简单界面设计 登陆系统
  • 原文地址:https://www.cnblogs.com/retacn-yue/p/6194234.html
Copyright © 2011-2022 走看看