Skip to content

Instantly share code, notes, and snippets.

View 9klips's full-sized avatar

9klips

View GitHub Profile
@9klips
9klips / Install Ubuntu 18.04 subsystem on Windows 10 64-bit
Created August 18, 2019 08:21
Install Ubuntu 18.04 subsystem on Windows 10 64-bit
#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