• ubuntu下查询SSH状态和安装SSH服务


    1、查询SSH的安装状态

    rpm -qa |grep ssh

    上面的命令可能出现提示说rpm未安装,可以使用下面这命令进行安装

    sudo apt-get install rpm

    某些帖子上也可以使用yum进行装,但是可能出现yum未安装的提示,如果yum未安装,可以使用如下命令进行安装

    sudo apt-get install yum

    2、安装SSH

    可以使用如下任意一个命令

    apt-get install ssh

    或者

    yum install ssh

    经过上面2步后发现压根没有卵用,上面的步骤参考的:http://jingyan.baidu.com/article/08b6a591f0fafc14a9092275.html,直接继续看其他blog

    后来参考:http://www.linuxidc.com/Linux/2015-03/115056.htm

    SSH 服务器的安装:

    sudo apt-get install openssh-server

    SSH 客户端的安装:

    sudo apt-get install openssh-client

    启动SSH服务

    sudo service ssh start

    或者
    sudo service ssh restart

    查看SSH的版本

    ssh -V

    下面使用SSH客户端工具就可以连接到这台linux了。

  • 相关阅读:
    164-268. 丢失的数字
    163-20. 有效的括号
    Sword 30
    Sword 29
    Sword 27
    Sword 25
    Sword 24
    Sword 22
    Sword 21
    Sword 18
  • 原文地址:https://www.cnblogs.com/yangzhilong/p/5356999.html
Copyright © 2020-2023  润新知