当前位置: 代码迷 >> 综合 >> Window10 linux 子系统安装配置ssh
  详细解决方案

Window10 linux 子系统安装配置ssh

热度:90   发布时间:2024-03-08 13:00:07.0

配置 ssh 服务

sudo apt-get remove --purge openssh-server   ## 先删sshsudo apt-get install openssh-server          ## 在安装ssh  sudo rm /etc/ssh/ssh_config                  ## 删配置文件,让ssh服务自己想办法链接sudo service ssh --full-restart