ubuntu学习整理---ssh安装

用到软个工具:VirtualBox-3.1.6-59338-Win.exe       ubuntu-10.04-desktop-i386.iso

最近遇到了问题:安装ssh后执行/etc/init.d/ssh  restart 报错 command not found
1、判断是否安装了ssh
ssh localhost   或者 ps -e |grep ssh
2、安装ssh
sudo apt-get install openssh-server
再次执行 ps -e |grep ssh 发现和没装的时候一样
怎么办呢,方法如下:
1、首先升级一下
sudo apt-get update
再次安装
sudo apt-get install openssh-server
2、然后确认sshserver是否启动了:
ps -e |grep ssh
如果只有ssh-agent那ssh-server还没有启动,需要/etc/init.d/ssh start,如果看到sshd那说明ssh-server已经启动了。

你可能感兴趣的:(ubuntu,职场,ssh,休闲)