ubuntu开启SSH服务
ubuntu16.04默认安装openssh-client,可以直接使用。如果需要将自己的ubuntu作为服务器,供其它客户机连接,则需要安装openssh-server。
具体安装步骤如下:
(1)sudo apt-get install openssh-server
确认是否安装成功:
(2)ps -e | grep ssh
启动ssh服务:
(3)service ssh start或者sudo /etc/init.d/ssh start
理想王国
ubuntu16.04默认安装openssh-client,可以直接使用。如果需要将自己的ubuntu作为服务器,供其它客户机连接,则需要安装openssh-server。
具体安装步骤如下:
(1)sudo apt-get install openssh-server
确认是否安装成功:
(2)ps -e | grep ssh
启动ssh服务:
(3)service ssh start或者sudo /etc/init.d/ssh start