本文参考自: https://www.cnblogs.com/clwsec/p/12403521.html

前言

window子系统每次开机ssh服务都需要手动开启,比较麻烦,经探索,存在解决方法如下

环境

1.win10
2.子系统Debian10

  1. $cat /etc/os-release
  2. PRETTY_NAME="Debian GNU/Linux 10 (buster)"
  3. NAME="Debian GNU/Linux"
  4. VERSION_ID="10"
  5. VERSION="10 (buster)"
  6. VERSION_CODENAME=buster
  7. ID=debian
  8. HOME_URL="https://www.debian.org/"
  9. SUPPORT_URL="https://www.debian.org/support"
  10. BUG_REPORT_URL="https://bugs.debian.org/"

WIN10设置

1.win10点击win+R,输入shell:startup, 打开启动文件夹

2.在文件夹中创建xxx.vbs文件,输入以下内容:

  1. set ws=wscript.createobject("wscript.shell")
  2. ws.run "wsl -d debian -u root /etc/init.d/ssh start",vbhide
3.下次重新启动WIN10即可自动启动ssh服务


09-08 03:35