WSL2: Difference between revisions

From Wiki
Line 11: Line 11:
Dism /online /enable-feature /featurename:Microsoft-Hyper-V -All /LimitAccess /ALL
Dism /online /enable-feature /featurename:Microsoft-Hyper-V -All /LimitAccess /ALL
</pre>
</pre>
* Install Hyper-V Windows features
* Install Hyper-V Windows features "Turn Windows features on or off":
** "Turn Windows features on or off"
<pre>
**<pre>
Hyper-V Management Tools > All
Hyper-V Management Tools > All
Hyper-V Platform > All
Hyper-V Platform > All
</pre>
* Script after every logon
<pre>
set-vmswitch -name wsl -NetAdapterName Ethernet
</pre>
</pre>



Revision as of 15:38, 4 December 2021

Links



Networking

Network bridge to Ethernet Adapter

  • Enable Hyper-V
Dism /online /enable-feature /featurename:Microsoft-Hyper-V -All /LimitAccess /ALL
  • Install Hyper-V Windows features - "Turn Windows features on or off":
Hyper-V Management Tools > All
Hyper-V Platform > All
  • Script after every logon
set-vmswitch -name wsl -NetAdapterName Ethernet

WSL IPs

wsl hostname -I
netsh interface ipv4 show neighbors

.wslconfig

  • C:\Users\UserName\.wslconfig
[wsl2]
memory=4GB      # Limits VM memory in WSL 2 to 4 GB
processors=2    # Makes the WSL 2 VM use two virtual processors


fstab

z: /mnt/z drvfs rw,relatime 0 0

mount network share

mount -t drvfs '\\server\share' /mnt/share

Docker in WSL

  • install docker on linux
  • add to ~/.bashrc
# Start Docker daemon automatically when logging in if not running.
RUNNING=`ps aux | grep dockerd | grep -v grep`
if [ -z "$RUNNING" ]; then
    sudo dockerd > /dev/null 2>&1 &
    disown
fi

Other

Using New Windows Terminal

  • profiles.json
    • set defaultProfile to Ubuntu
    • for linux home dir:
"commandline" : "wsl.exe ~ -d Ubuntu-20.04",


Running Linux Commands

  • using bash.exe
bash.exe -c "jupyter-notebook ; /bin/bash"
  • using wsl
wsl jupyter-notebook &


Multiple Distro Instances

* Settings -> Apps -> Ubuntu -> Advanced -> Reset to initial state

wsl --list
wsl --export Ubuntu-20.04 Ubuntu_fresh_rootfs.tar.gz

wsl --import DistroName InstallationPath Ubuntu_fresh_rootfs.tar.gz
wsl -d DistroName