天天看点

Ubuntu无法远程连接

进入 /etc/ssh 目录下

修改 sshd_config 配置文件:

# 将 PermitRootLoging prohibit-password
# 修改成 PermitRootLogin yes 即可
PermitRootLogin yes      
Ubuntu无法远程连接

如果 /etc/ssh 目录下没有 sshd_config 配置文件

# 获取 root
sudo -s
# sshd是ssh的服务器端,执行命令,安装 sshd
apt install openssh-server