It’s been a while since my last post about run­ning Linux GUI ap­pli­ca­tions on Win­dows 10. At that time you had to in­stall an X Server on Win­dows to make it work. In May 2020 Mi­crosoft pro­posed its roadmap to bring GUI ap­pli­ca­tions to the Win­dows Sub­sys­tem for Linux and in April this year, a first pre­view was avail­able. This project is called Win­dows Sub­sys­tem for Linux GUI (WSLg) and its pur­pose is to en­able sup­port for run­ning Linux GUI ap­pli­ca­tions (X11 and Way­land) on Win­dows in a fully in­te­grated desk­top ex­pe­ri­ence. How does this work out? We will see.

How it works, tech­ni­cally

WSLg Architecture OverviewIn ad­di­tion to the user dis­tro, the WSLg in­tro­duces a sys­tem dis­tro, a con­tainer­ized Linux en­vi­ron­ment where the WSLg XServer, Way­land server, and Pulse Audio server are run­ning. Com­mu­ni­ca­tion sock­ets for each of these servers are pro­jected into the user dis­tro so client ap­pli­ca­tions can con­nect to them. The sys­tem dis­tro is based on the Mi­crosoft CBL-​Mariner Linux. This is a min­i­mal Linux en­vi­ron­ment, just enough to run the var­i­ous pieces of WSLg. FreeRDP is used as a back­end RDP Server, en­cod­ing all com­mu­ni­ca­tions going from the RDP Server to the RDP Client show­ing the GUI win­dows.

How to get it

To get WSLg you’ll need to join the Win­dows In­sider Pro­gram and choose the beta or dev chan­nel. This way, the newest Win­dows In­sider Pre­view build will be in­stalled, con­tain­ing the WSLg Pre­view build. As of now you will get the Pre­view build ver­sion 22000.160, also known as … Win­dows 11. You may run into the prob­lem, that your com­puter is not el­i­gi­ble for Win­dows 11 In­sider Pre­view builds and you may get a warn­ing mes­sage. The re­quire­ments for Win­dows 11 are rel­a­tively high at the mo­ment: TPM 2.0, Se­cure Boot, and a mod­ern CPU (e.g. Intel Core 8000 or up). Win­dows then au­to­mat­i­cally switches you to the Re­lease chan­nel. But in my ex­pe­ri­ence, if you “in­sist” on stay­ing in the beta chan­nel by se­lect­ing it again, you will get the Pre­view any­way.

If you don’t have WSL al­ready in­stalled, you can run the fol­low­ing com­mand from a com­mand prompt with ad­min­is­tra­tor priv­i­leges

wsl --install -d Ubuntu

and then re­boot when prompted. If you do have a WSL in­stal­la­tion, but not the newest WSL2, you can up­grade with the fol­low­ing com­mand:

wsl --update

How to in­stall and run GUI apps

You can now just in­stall ap­pli­ca­tions using the pack­age man­ager of your se­lected dis­tri­b­u­tion. I will use De­bian as an ex­am­ple:

sudo apt in­stall x11-​apps -y

This will give you xcalc, xclock, xeyes, xedit, and a lot of other stuff.

All app win­dows ap­pear as sep­a­rate win­dows on your desk­top.

But why?

You will not find many Linux ap­pli­ca­tions which are not also al­ready ported to Win­dows. Gnome Web is one ex­am­ple, the light­weight stan­dard web browser of the Gnome desk­top, or Evo­lu­tion or Geary. Some soft­ware ports may not have reached the same qual­ity or sta­bil­ity on Win­dows as the orig­i­nal, though. Or maybe you got ac­cus­tomed to some Linux soft­ware and just want to use it under Win­dows also.

De­vel­op­ing Linux soft­ware using WSL is a whole dif­fer­ent story, of course. As a soft­ware de­vel­oper, you can now use all GUI-​based de­vel­op­ment tools and you also can de­velop and test Linux GUI ap­pli­ca­tions. Or Electron-​based mul­ti­plat­form apps. This is very con­ve­nient and one of the ini­tial pri­mary rea­sons for the de­vel­op­ment of the Win­dows Sub­sys­tem for Linux.

Some more in­for­ma­tion

WSLg is de­signed to sup­port OpenGL ac­cel­er­ated ren­der­ing by the graph­ics card. There are al­ready pre­view dri­vers avail­able from Intel, AMD, and Nvidia. You can find links to their re­spec­tive web pages in the link list below. Nvidia and AMD also sup­port ma­chine learn­ing APIs in their dri­vers.

To cre­ate a short­cut to an in­stalled Linux GUI app with­out using a ter­mi­nal win­dow, you can use the fol­low­ing “trick”: cre­ate a VB­Script file, e.g. a file named “xeyes.vbs”, con­tain­ing this sin­gle line:

CreateObject("Wscript.Shell").Run "C:\Windows\System32\wsl.exe -d Debian -e xeyes",0,True

Double-​clicking on this file will start the ap­pli­ca­tion “xeyes” in the dis­tri­b­u­tion “De­bian” with­out a ter­mi­nal win­dow.