0144.html 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>Installing Windows Subsystem for Linux (WSL)</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  6. <meta charset="UTF-8">
  7. <meta name="keywords" content="How To,Tutorial,i12bretro,Windows,Linux,Ubuntu,Debian,WSL,Subsystem,Linux On Windows">
  8. <meta name="author" content="i12bretro">
  9. <meta name="description" content="Installing Windows Subsystem for Linux (WSL)">
  10. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  11. <link rel="icon" type="image/x-icon" href="includes/favicon.ico">
  12. <script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
  13. <script type="text/javascript" src="includes/js/steps.js"></script>
  14. <link href="css/steps.css" rel="stylesheet" type="text/css" />
  15. </head>
  16. <body>
  17. <div id="gridContainer">
  18. <div class="topMargin"></div>
  19. <div id="listName" class="topMargin">
  20. <h1>Installing Windows Subsystem for Linux (WSL)</h1>
  21. </div>
  22. <div></div>
  23. <div id="content">
  24. <ol>
  25. <li>Launch Powershell as administrator</li>
  26. <li>Run the following command
  27. <div class="codeBlock">dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart</div>
  28. </li>
  29. <li>Reboot</li>
  30. <li>If running Windows 2004 or newer, run the following additional commands to use WSL 2
  31. <div class="codeBlock">dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart<br />
  32. wsl --set-default-version 2</div>
  33. </li>
  34. <li>Click the Start Button &gt; Search Microsoft Store &gt; Select Microsoft Store</li>
  35. <li>Search for the Linux distribution to install (Debian, Ubuntu, etc)</li>
  36. <li>Select the Linux distribution and click the Get button in the upper right corner</li>
  37. <li>After the Linux distribution downloads and installs, select the distribution from the Start menu to launch it</li>
  38. <li>Input a username and password to be used in the Linux environment</li>
  39. </ol>
  40. </div>
  41. </div>
  42. </body>
  43. </html>