1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <!DOCTYPE html>
- <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <title>Installing Windows Subsystem for Linux (WSL)</title>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <meta charset="UTF-8">
- <meta name="keywords" content="How To,Tutorial,i12bretro,Windows,Linux,Ubuntu,Debian,WSL,Subsystem,Linux On Windows">
- <meta name="author" content="i12bretro">
- <meta name="description" content="Installing Windows Subsystem for Linux (WSL)">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <link rel="icon" type="image/x-icon" href="includes/favicon.ico">
- <script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
- <script type="text/javascript" src="includes/js/steps.js"></script>
- <link href="css/steps.css" rel="stylesheet" type="text/css" />
- </head>
- <body>
- <div id="gridContainer">
- <div class="topMargin"></div>
- <div id="listName" class="topMargin">
- <h1>Installing Windows Subsystem for Linux (WSL)</h1>
- </div>
- <div></div>
- <div id="content">
- <ol>
- <li>Launch Powershell as administrator</li>
- <li>Run the following command
- <div class="codeBlock">dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart</div>
- </li>
- <li>Reboot</li>
- <li>If running Windows 2004 or newer, run the following additional commands to use WSL 2
- <div class="codeBlock">dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart<br />
- wsl --set-default-version 2</div>
- </li>
- <li>Click the Start Button > Search Microsoft Store > Select Microsoft Store</li>
- <li>Search for the Linux distribution to install (Debian, Ubuntu, etc)</li>
- <li>Select the Linux distribution and click the Get button in the upper right corner</li>
- <li>After the Linux distribution downloads and installs, select the distribution from the Start menu to launch it</li>
- <li>Input a username and password to be used in the Linux environment</li>
- </ol>
- </div>
- </div>
- </body>
- </html>
-
|