# 卸载自带的 ssh sudo apt-get remove openssh-server
# 安装 ssh sudo apt-get install openssh-server
#设置密码 passwd root
# 编辑配置文件 vim /etc/ssh/sshd_config
Port 9922 # 修改端口号,避免和 Windows ssh 服务端口冲突
PermitRootLogin yes # 允许使用 root 用户登录
PasswordAuthentication yes # 允许使用 密码登录
# 重启 ssh 服务 sudo service ssh --full-restart