ubuntu安装ssh服务

查看是否安装了ssh-server服务

dpkg -l | grep ssh

安装ssh-server服务

sudo apt-get install openssh-server

查看服务是否开启

ps -e | grep ssh

启动ssh

sudo /etc/init.d/ssh start

关闭ssh

sudo /etc/init.d/ssh stop

参考 https://blog.csdn.net/jackghq/article/details/54974141

你可能感兴趣的:(ubuntu)