1.安装ssh服务
sudo apt-get install ssh
2.编辑ssh配置文件
打开sshd_config文件,
sudo nano /etc/ssh/sshd_config
找到对应的配置把前面的#删掉:
PasswordAuthentication yes
若想允许root用户远程登录,再添加下面语句
PermitRootLogin yes #允许root用户登录
保存退出
3.启动服务
sudo service ssh start
4.添加开机启动
sudo update-rc.d ssh enable
5.查看ssh服务状态
/etc/init.d/ssh status