1. 系统升级
ubuntu有一个很麻烦的特性,就是新装的系统需要先更新系统:
sudo apt-get update -y
2. 安装openssh-server【sshd】
sudo apt install openssh-server
3. 开放防火墙
sudo ufw allow ssh
4. 允许root远程
5. 启服务,检查服务状态
sudo systemctl restart sshd
sudo systemctl status ssh
标签:sshd,启用,ubuntu22.04,sudo,apt,systemctl,远程 From: https://www.cnblogs.com/santia-god/p/17023147.html