123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <!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="Windows,Linux,Ubuntu,Debian,WSL,Subsystem,Linux On Windows,Install Guide,How To Install WSL,How To Install Windows Subsystem For Linux,Windows Subsystem For Linux,Run Linux Terminal On Windows,Install Linux Terminal Applications On Windows,WSL Installation Guide,How To,Tutorial,i12bretro">
- <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">
- <meta name="revised" content="04/09/2022 07:02:21 AM" />
- <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>
-
|