检查ssh是否已经开启
ps -ef | grep ssh
安装ssh服务
#方法1
#客户端
sudo apt-get install openssh-client
#服务器
sudo apt-get install openssh-server
#方法2
apt-get install ssh
修改ssh配置文件
cd /etc/ssh
sudo vim sshd_config
#去掉Port前的注释
#去掉0.0.0.0那一行前面的注释
#找到PermitRootLogin without-password 修改为PermitRootLogin yes
启动ssh服务
sudo /etc/init.d/ssh start
#或者
service ssh start