本文参考自: https://www.cnblogs.com/clwsec/p/12403521.html
前言
window子系统每次开机ssh服务都需要手动开启,比较麻烦,经探索,存在解决方法如下
环境
1.win10
2.子系统Debian10
- $cat /etc/os-release
- PRETTY_NAME="Debian GNU/Linux 10 (buster)"
- NAME="Debian GNU/Linux"
- VERSION_ID="10"
- VERSION="10 (buster)"
- VERSION_CODENAME=buster
- ID=debian
- HOME_URL="https://www.debian.org/"
- SUPPORT_URL="https://www.debian.org/support"
- BUG_REPORT_URL="https://bugs.debian.org/"
WIN10设置
1.win10点击win+R,输入shell:startup, 打开启动文件夹
2.在文件夹中创建xxx.vbs文件,输入以下内容:
- set ws=wscript.createobject("wscript.shell")
- ws.run "wsl -d debian -u root /etc/init.d/ssh start",vbhide