6,023 questions
0
votes
0
answers
26
views
Viewing a png through WSL VSCode terminal? [closed]
I am working on Finite State Transducers through the program hfst. Part of this program allows you to view an image of the network based on your established transducers. I am running hfst through a ...
-2
votes
0
answers
50
views
Sudden Issues Debugging Azure Functions in VS Code
I have a large code base of Azure Functions (Typescript) that I manage using VS Code and the Azure Functions extension. I am using VS Code in WSL (Windows). I've been able to debug these functions in ...
0
votes
0
answers
31
views
Modifying software in Linux during what stage of the installation process? (./configure, make, make install) [duplicate]
I am currently trying to alter the behaviour of the PJSIP library I have installed on my local WSL. I am trying to add print statements in the code to understand the behaviour, between this library ...
0
votes
0
answers
90
views
VScode Github Copilot connection issues on WSL
I have been having issues with copilot in VScode, regardless of which model is used.
The issues arise especially in agent/edit mode.
The error message im getting in the output logs:
...
-1
votes
0
answers
140
views
wsl --install Ubuntu --name MyUbuntu --user root [migrated]
I tried to get around the user prompt when installing a distro via wsl --install Ubuntu --name MyUbuntu --user root.
I need this to script the creation of the distro in PowerShell. Sadly, option --...
2
votes
0
answers
65
views
How to debug C++ code in a Python extension (VLLM) and speed up compilation?
I’m working with VLLM (open-source) which includes C++ extension code compiled for Python.
I installed it using
CXXFLAGS="-Og -g" pip install -e .
I want to debug the C++ code from Python by ...
0
votes
0
answers
42
views
Is there a way to access a network share in wsl2 visual studio debugger the same way it works in regular wsl terminal?
I can mount a company network drive in the WSL terminal. Presumably it can use the privileges of my windows user instead of my wsl ubuntu user when I do it. However when I am running Visual Studio ...
1
vote
1
answer
105
views
Docker build in WSL fails on curl download (curl: 56, unexpected eof)
I am trying to build a static FrankenPHP binary using their official Docker setup on Windows 10 with WSL 2 (Ubuntu). The build process, which uses docker buildx bake, fails at a step that downloads ...
3
votes
2
answers
741
views
VSCode stuck in "Opening remote" / "No WSL distros found" error
It was working fine a couple of days ago, now it's stuck in "Opening remote".
An error is shown on a toast saying: "No WSL distros found. New distros can be installed from the Microsoft ...
0
votes
0
answers
43
views
Redeploy docker application when server restarts
I have a docker application that we have deployed on a clients Windows 2022 server. As part of the clients security protocol the server does occasional restarts. I'd like the app to be redeployed ...
1
vote
1
answer
128
views
Debugging vLLM with debugpy on WSL fails: AttributeError: module 'ray' has no attribute 'is_initialized'
I’m trying to debug my Python code with debugpy in VS Code on WSL (Ubuntu).
Environment:
Python: 3.12.3 (venv)
vLLM: 0.10.1.1+cpu
debugpy: ms-python.debugpy-2025.10.0 (from VS Code extension)
...
0
votes
0
answers
28
views
dat-power extension is failing and stall sin a devcontainer
I am running a devcontainer on my windows machine using ubuntu as the WSL bistro. When I click the dot Power User extension - it's just loading constantly (the little blue line in the image moves from ...
0
votes
0
answers
29
views
vbox boot message - frozen text on Oracle VirtualBox Manager
I was trying to install GuestAdditions to my virtual machine manager so I can drag and drop files from my normal windows desktop into my virtual machine, however, I have now encountered an issue ...
-2
votes
1
answer
62
views
Bash script on Ubuntu WSL with odd concatenation behavior using fzf and a word list [duplicate]
This script behaves perfectly fine on a real Ubuntu system.
#!/bin/bash
set -Eeu -o pipefail
word1=$(awk '{print $2}' eff_short_wordlist_2_0.txt | fzf)
echo "${word1}"
word2=$(awk '{print $...
0
votes
0
answers
63
views
Querying Tailscale from inside WSL2
I've got Tailscale running on Windows 11 but I have some Bash scripts I run in WSL2 that query devices connected via Tailscale. That works fine, but parts of the scripts query the Tailscale CLI ...