TVT618

[Guide] Using Kali Linux on Windows 10 from Microsoft Store

Mar 14th, 2018
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.30 KB | None | 0 0
  1. [Guide]
  2. Using Kali Linux on Windows 10 from Microsoft Store
  3.  
  4. Read more: Install Kali Linux on Windows 10 no VMware or VirtualBox
  5.  
  6. Getting Kali Linux Installed on WSL and updating Kali Linux on WSL
  7. * Update your Windows 10 machine. Open an administrative PowerShell window and install the Windows Subsystem with this one-liner. A reboot will be required once finished:
  8. Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Windows-Subsystem-Linux
  9.  
  10. * Once rebooted, open the Microsoft store and search for the “Kali Linux” application, or alternatively click here to go there directly. Install the app anh choose Launch
  11.  
  12. * This may take a few minutes. Enter this commands to update Kali Linux:
  13. apt-get update
  14. apt-get dist-upgrade
  15.  
  16. See full instructions in the video below: https://vimeo.com/258822932
  17.  
  18. How to install xfce4 on Kali Linux over WSL on Windows 10?
  19. * After Getting Kali Linux Installed on WSL and updating Kali Linux on WSL. Open Command Prompt and enter this commands:
  20. kali
  21. apt-get update
  22. apt-get install wget -y
  23. wget https://kali.sh/xfce4.sh
  24. sudo sh xfce4.sh
  25. sudo /etc/init.d/xrdp start
  26.  
  27. See full instructions in the video below: https://vimeo.com/255052199
  28.  
  29. Installing Pentest tools on Kali Linux
  30. Installing tools from the Kali Linux repository is usually done via apt commands. For example, to install the Metasploit Framework, you can simply:
  31. apt-get update
  32. apt-get install metasploit-framework
  33.  
  34. Note: Some Kali tools are identified by antivirus software as malware. One way to deal with this situation is to allow antivirus exceptions on the directory in which the Kali chroot resides in. The following video walks you through this process: https://vimeo.com/258892544
  35.  
  36. How to recovering from a failed Kali Linux WSL instance?
  37. Sometimes, you can inadvertently kill your Kali WSL instance, due to an overzealous command, an unintentional action, or even due to Kali or WSL bugs. If this happens, here is a quick recovery guide to get back on top of things. Note: this process will wipe your Kali WSL chroot, and re-extract a new copy. Any changes made to the filesystem will be gone, and reset to default.
  38.  
  39. See full instructions in the video below: https://vimeo.com/258835347
  40.  
  41. From Kali Linux
Advertisement
Add Comment
Please, Sign In to add comment