首次安裝後須要先更新下源python
sudo apt update
安裝pythonlinux
sudo apt install python3 #若是有多個python版本能夠使用下面方式來進行切換 update-alternatives --install /usr/bin/python python /usr/bin/python2.7 1 update-alternatives --install /usr/bin/python python /usr/bin/python3.5 1
安裝sshshell
sudo apt-get install openssh-server #安裝ssh sudo service ssh --full-restart #完整啓動 ssh service
xshell 鏈接測試windows
sudo apt install net-tools # 安裝網絡工具 ifconfig #查看ip xshell中配置host地址
vscode配置remote插件服務器
1. 安裝 Remote Development extension pack 2. ctrl+p > 輸入remote-ssh, 根據提示輸入host地址,等待打開新遠程窗口輸入密碼信息 3. 打開遠程服務器項目目錄, enjoy it !
子系統ssh開機自動啓動網絡
1. win+r 輸入 shell:startup 進入啓動目錄 2. 增長startservice.vbs啓動程序, 重啓或者直接命令行執行測試 ```vbs Set ws = CreateObject("Wscript.Shell") ws.run "wsl -d debian -u root service ssh --full-restart", vbhide ```