Windows Subsystem for Linux (WSL)

From wiki.vacula.xyz
Revision as of 13:52, 24 September 2025 by Dracula (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Troubleshooting

Cannot access the internet while using Cisco AnyConnect

Solution: Add the following to ~\.wslconfig

[experimental]
networkingMode=mirrored
dnsTunneling=true

Then restart wsl using

wsl --shutdown

Firefox Will Not Fully Scroll to Ends of Page

This seems to be an issue related to Wayland. To fix, the MOZ_ENABLE_WAYLAND environment variable must be set to 0:

MOZ_ENABLE_WAYLAND=0 firefox

To make this persistent, add it to /etc/profile

export MOZ_ENABLE_WAYLAND=0