Skip to content

Instantly share code, notes, and snippets.

@marcqw
Created October 11, 2022 09:24
Show Gist options
  • Save marcqw/409ab699829ce2019deefbd84be4d4d0 to your computer and use it in GitHub Desktop.
Save marcqw/409ab699829ce2019deefbd84be4d4d0 to your computer and use it in GitHub Desktop.
WSL Anton
Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Windows-Subsystem-Linux
dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart
dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart
https://aka.ms/wsl2kernel
wsl --set-default-version 2
wsl --install -d kali-linux
wget http://http.kali.org/kali/pool/main/k/kali-archive-keyring/kali-archive-keyring_2022.1_all.deb
dpkg -i kali-archive-keyring_2022.1_all.deb
rm kali-archive-keyring_2022.1_all.deb
apt-get update
apt install kali-desktop-xfce xrdp -y
service xrdp start
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment