当前位置: 代码迷 >> 综合 >> ubuntu20–(1)–Windows 10 自带linux子系统-SSH服务安装、远程登录、数据传输
  详细解决方案

ubuntu20–(1)–Windows 10 自带linux子系统-SSH服务安装、远程登录、数据传输

热度:88   发布时间:2024-01-29 18:16:40.0

1、服务安装

检查服务进程是否存在
ps -e | grep ssh

如果有sshd结果展现,说明服务已经启动,sshd标识有客户端连接
如果有ssh结果展现,说明服务已经启动,ssh标识连接的客户端
如果没有结果,说明服务未启动或者未安装。

尝试启动服务
sudo service ssh start
若提示:sshd: no hostkeys available -- exiting 说明服务已安装但未启动方案1:改为密码登录sudo vim /etc/ssh/sshd_config 把PasswordAuthentication改为yes/etc/init.d/ssh start
若提示:未安装openssh-server 请用下面命令安装
sudo apt-get install openssh-client
sudo apt-get install openssh-server

备注:
收工

看这里,看这里
文章总目录:博客导航
参考文章:https://blog.csdn.net/u_ascend/article/details/80592389

参考:
Service - OpenSSH | Server documentation | Ubuntu
文件权限中 chmod、u+x、u、r、w、x分别代表什么_兴趣斗士的博客-CSDN博客_chmod u+x

  相关解决方案