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
#This file contains commands and instructions for installing Linux distributions on Windows for through WSL | |
# 1. First we need to enable the WSL optional feature and restart the computer | |
Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Windows-Subsystem-Linux -NoRestart | |
Restart-Computer | |
# 2. Create a folder where the Linux distribution will be placed and executed from | |
New-Item C:\Distros -ItemType Directory | |
Set-Location C:\Distros |