Ubuntu 20.04 开启SSH服务

更新软件下载源

sudo apt update

安装ssh服务

sudo apt install openssh-server

开启防火墙ssh的服务端口

sudo ufw allow ssh

附:还可以查看或更改ssh服务的状态

查看ssh服务状态

systemctl status ssh

关闭ssh服务

systemctl stop ssh

开启ssh服务

systemctl start ssh

重启ssh服务

systemctl restart ssh

设置开启自启

sudo systemctl enable ssh

关闭开机自启

sudo systemctl disable ssh

 

你可能感兴趣的:(Linux,ubuntu,linux,ubuntu)