Run Linux On Windows 10 Without A Virtual Machine With WSL

There once was a time where the worlds of Microsoft and Linux were greatly at odds. Each faction trying to destroy the other and win the war of the operating systems. Times have changed.

That war may still be happening, but at least from the perspective of Microsoft, an olive branch has been extended to the Linux community. Since the hiring of Satya Nadella as Microsoft’s CEO, we have seen countless acts of goodwill as Microsoft has embraced Linux into its ecosystem. PowerShell is now cross-platform and runs on Linux. OpenSSH runs on Windows. Linux VM’s run on Azure. Now, you can even install a Linux distribution directory on Windows 10 natively (without using a VM) with the Windows Subsystem for Linux (WSL).

Why Not Use a Virtual Machine?

When I heard of WSL, one of the first thoughts I had was the question, “Why not just use a VM instead like we have been doing for years?” First, this is certainly still something IT professionals or developers can do. The difference with WSL, is that you don’t have the same overhead in terms of resources as a virtual machine. In addition, you can interact with your Windows host from your Bash prompt, and also run Linux commands from cmd and PowerShell.

For instance, from PowerShell I can now do run ls –la on my Windows directory by using the wsl.exe executable:

terminal1

Here, I perform the same command from my Bash shell in my Linux WSL instance on the same Windows directory. Notice the Windows file system is mounted on my Linux distribution under /mnt/c:

terminal2

Installing WSL on Windows 10

To install Ubuntu on my Windows 10 machine, I will take a page from Microsoft’s documentation and install a Linux distribution (Ubuntu) on a Windows 10 computer all from PowerShell. First, we enable the WSL feature which will require a reboot:

Read more at ipswitch.com

Comments are closed.