1、Ubuntu下
确认 SSH Server 是否启动
输入: sudo ps -e | grep ssh。 如果正确启动, 命令行中会显示sshd。
安装服务端 OpenSSH Server
输入 : sudo apt-get install openssh-server #安装 sudo apt-get remove openssh-server #卸载
安装客户端 OpenSSH Client
输入 : sudo apt-get install openssh-client
启动 ssh服务
输入 : sudo /etc/init.d/ssh start 或 sudo service ssh start
重启 ssh服务
输入 : sudo /etc/init.d/ssh restart 或 sudo service ssh restart
停止 ssh服务
输入 : sudo /etc/init.d/ssh stop
原文地址:https://www.cnblogs.com/lxw-88/p/12250462.html
时间: 2024-11-12 14:43:02