Ubuntu SSHD 安装
在终端中敲入如下命令,安装ssh服务器和客户端:# sudo apt-get install openssh-server
openssh-client
SSHD 配置
按照上面的安装完毕后,SSH服务器为默认配置。测试SSHD是否能正常工作:# ssh
localhost
或者# ssh username@your-server-ip-address
怎样使用SSH客户端
假设你的服务器主机名为server.mydomain并且你的用户名为username,你可以使用如下命令:# ssh
username@server.mydomain
或者
# ssh username@your-server-ip-address
怎样管理SSH服务器
停止ssh服务,使用:# sudo /etc/init.d/ssh
stop
开启ssh服务,使用:# sudo /etc/init.d/ssh
start
重启ssh服务,使用:# sudo /etc/init.d/ssh restart
参考:
http://www.cyberciti.biz/faq/ubuntu-linux-openssh-server-installation-and-configuration/