Windows Subsystem for Linux (WSL): Difference between revisions

From wiki.vacula.xyz
No edit summary
No edit summary
 
(One intermediate revision by the same user not shown)
Line 3: Line 3:
==== Cannot access the internet while using Cisco AnyConnect ====
==== Cannot access the internet while using Cisco AnyConnect ====
Solution:
Solution:
Add the following to ~\.wslconfig
Add the following to <code>~\.wslconfig</code>
  [experimental]
  [experimental]
  networkingMode=mirrored
  networkingMode=mirrored
Line 9: Line 9:
Then restart wsl using  
Then restart wsl using  
  wsl --shutdown
  wsl --shutdown
==== Firefox Will Not Fully Scroll to Ends of Page ====
This seems to be an issue related to Wayland. To fix, the <code>MOZ_ENABLE_WAYLAND</code> environment variable must be set to 0:
MOZ_ENABLE_WAYLAND=0 firefox
To make this persistent, add it to <code>/etc/profile</code>
export MOZ_ENABLE_WAYLAND=0

Latest revision as of 13:52, 24 September 2025

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