是否可以在VSCode中编辑远程 PC的WSL2中的文件。 (这就像Remote-WSL和Remote-SSH的组合。)我可以通过ssh和RDP连接到该远程PC。
在我的remote-ssh连接中,路径\\wsl$\
似乎不可用。
PCA - me, local, VSCode
^
|
ssh and/or RDP
|
V
PCB - remote, WSL2
(我目前在远程PC上设置了Windows OpenSSH,并且使用默认的CMD Shell。我尝试将Shell设置为Bash,但随后将无法安装远程扩展。)
更新将PC-B的ssh服务器外壳设置为bash.exe
可以解决了我所有的问题。我不确定为什么以前没用过。有关更多详细信息,请参见下面的答案。
答案 0 :(得分:3)
回答我自己的问题我敢肯定,我以前曾经尝试过这个方法,但是它没有用,但是现在我再试一次就可以了。也许我只需要重新启动Windows和WSL2。
bash.exe
# Powershell as Administrator
Add-WindowsCapability -Online -Name OpenSSH.Server~~~~0.0.1.0
Set-Service -Name sshd -StartupType 'Automatic'
New-ItemProperty -Path "HKLM:\SOFTWARE\OpenSSH" -Name DefaultShell -Value "C:\WINDOWS\System32\bash.exe" -PropertyType String -Force
使用远程SSH(使用Windows凭据)将VSCode从PC-A连接到PC-B,并告诉VSCode它是 linux 服务器(因为您正在连接到bash)。 WSL2中的exe文件。
~/.wgetrc
。Voila。
这些步骤是从THE EASY WAY how to SSH into Bash and WSL2 on Windows 10 from an external machine开始的,您可以在其中找到更多详细信息。
答案 1 :(得分:2)
如果要连接到远程WSL,则可能应将其设置为运行自己的sshd
,而不是依靠托管Windows来进行隧道传输。
如果我的问题陈述正确无误,则似乎在VS代码blog posts之一中概述了流程。在这里,我将提到我认为您需要达到目标状态的步骤。
首先,在远程Windows上禁用sshd
,使其不占用端口22。然后,安装并启动sshd
内部 PCB
:
# from PCB command prompt
# something like that, depending on your choice of distro
sudo apt remove openssh-server && sudo apt install openssh-server
# this would again depend on your chosen distro
sudo /etc/init.d/ssh start # after i do this - windows pops up a firewall prompt to allow me create a rule. you might need to add it manually
然后,您需要通过ssh enable password logins或(最好)generate a key pair并将公钥放入/home/your_name/.ssh/authorized_keys
上的PCB
假设您已安装Windows的OpenSSH(这似乎是客户端Remote SSH所依赖的),请在PCA
上执行以下操作:
# something along these lines on your PCA
PS C:\WINDOWS\system32>ssh-keygen
# note location of .pub file and copy its contents into remote ./ssh/authorized_keys
# add generated private key to ssh-agent service
PS C:\WINDOWS\system32> Start-Service ssh-agent # if this fails - ensure service is installed and enabled
PS C:\WINDOWS\system32> ssh-add path\to\your\private_key # ensure you have dropped all permission except your own user
当心权限:
ssh密钥被认为是秘密的,因此除非您从密钥材料中删除所有权限,否则客户端和服务器都不会启动。在Linux上,请执行chmod 600 .ssh/authorized_keys
,在Windows上,请执行this SE answer中的说明。
以上内容似乎有些令人生畏,但实际上是非常标准的SSH设置过程
答案 2 :(得分:0)
简单的步骤