Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save CypherpunkSamurai/c7615e37826fefafcb87f452bb091f0e to your computer and use it in GitHub Desktop.
Save CypherpunkSamurai/c7615e37826fefafcb87f452bb091f0e 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