<ssh> -1 安装ssh服务

SSH为SecureShell的缩写,由IETF的网络工作小组(NetworkWorkingGroup)所制定;SSH为建立在应用层和传输层基础上的安全协议。SSH是目前较可靠,专为远程登录会话和其他网络服务提供安全性的协议。利用SSH协议可以有效防止远程管理过程中的信息泄露问题。SSH最初是UNIX系统上的一个程序,后来又迅速扩展到其他操作平台。SSH在正确使用时可弥补网络中的漏洞。SSH客户端适用于多种平台。几乎所有UNIX平台—包括HP-UX、Linux、AIX、Solaris、DigitalUNIX、Irix,以及其他平台,都可运行SSH。

ubuntu默认安装完成后只有ssh-agent(客户端模式),管理员模式需要另外安装,ubuntu的apt-get几乎无所不能。

1.

在管理员模式#下运行

apt-getinstallopenssh-server即可安装。

突然报错:opensshserverhasnoinstallationcandidate

  
#  apt-get install openssh-server
    Reading package lists... Done
    Building dependency tree... Done
    Package aptitude is not available, but is referred to by another package.
    This may mean that the package is missing, has been obsoleted, or
    is only available from another source
    E: Package <packagename> has no installation candidate

解决方法如下:

#apt-getupdate

#apt-getupgrade

#apt-getinstallopenssh-server

这样就可以正常使用apt-get了~

2.检查ssh服务开启状态

网上看到很多方法,比如ps-e|grepssh或servicesshstatus均可.

参考:

http://jingyan.baidu.com/article/00a07f38a5c05482d128dc5f.html

http://blog.csdn.net/liuyifeng_510/article/details/7081490

http://www.2cto.com/os/201108/99318.html

http://wenku.baidu.com/link?url=H3VusnfI4VIm88J2_uxvOGOXGSVo2Uq2kkPSErEZPD5vbghAGbTMfJhNocZbVpTmnL_mfdQWcmMGFsTc1ZQga1kH8EbZ_amJIPGY0t10mru

相关推荐