Created
October 11, 2022 09:24
-
-
Save marcqw/409ab699829ce2019deefbd84be4d4d0 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