Windows Subsystem for Linux (WSL)

From wiki.vacula.xyz

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