Forked from marcqw/gist:409ab699829ce2019deefbd84be4d4d0
Created
April 30, 2025 03:33
-
-
Save CypherpunkSamurai/c7615e37826fefafcb87f452bb091f0e to your computer and use it in GitHub Desktop.
WSL Anton
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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