0% found this document useful (0 votes)
97 views

Use X11 Forwarding With WSL - IIHE Wiki

This document discusses how to set up X11 forwarding with Windows Subsystem for Linux (WSL) on Windows 10 and Windows 11. For Windows 10, it describes installing Chocolatey, WSL1, VCXSRV, and a Linux distribution. For Windows 11, it notes WSL2 supports X11 forwarding out of the box and provides instructions for installing WSL2 and a distribution using the WSL.exe command. Finally, it explains how to enable X11 forwarding and test it by running the xclock program on both Windows and the Linux distribution.

Uploaded by

Meo Meo
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
97 views

Use X11 Forwarding With WSL - IIHE Wiki

This document discusses how to set up X11 forwarding with Windows Subsystem for Linux (WSL) on Windows 10 and Windows 11. For Windows 10, it describes installing Chocolatey, WSL1, VCXSRV, and a Linux distribution. For Windows 11, it notes WSL2 supports X11 forwarding out of the box and provides instructions for installing WSL2 and a distribution using the WSL.exe command. Finally, it explains how to enable X11 forwarding and test it by running the xclock program on both Windows and the Linux distribution.

Uploaded by

Meo Meo
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 8

Use X11 forwarding with WSL

From IIHE Wiki

Contents
1 About
2 Windows 10
2.1 Pre-requities
2.2 Install Chocolatey
2.3 Install WSL1 & VCXSVR
2.4 Install your Linux distribution on WSL
2.5 Starting The distribution
3 Windows 11
3.1 Installing using WSL.exe
3.2 Starting The distribution

About
This page will help you to install Windows Subsystem for Linux and X11 forwarding on Windows 10 or Windows 11.
Windows Subsystem for Linux can run a complete Linux OS inside Windows.
VCXSVR will help you to have X11 forwarding enabled.

Starting from Windows 10 build 2004 you can install WSL2 & a Linux distribution from an elevated prompt in one
command, more info here (https://wiki.iihe.ac.be/index.php?title=Use_X11_forwarding_with_WSL#Installing_using_W
SL.exe).

Windows 10
Pre-requities
Windows 10 Windows 11.
Administrative rights on your computer.
Chocolatey, the Windows package manager installed.

Install Chocolatey
Open a Powershell shell as Administrator by pressing the following keys :

Windows key + X
Paste the following in the Powershell window :

Set-ExecutionPolicy Bypass -Scope Process -Force;


[System.Net.ServicePointManager]::SecurityProtocol =
[System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object
System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))

Once Chocolatey is installed close the Powershell window.

More info about Chocolatey is available here (https://chocolatey.org/install)

Install WSL1 & VCXSVR


Open a Powershell shell as Administrator by pressing the following keys :

Windows key + X

On the Powershell window type the following :

choco install vcxsrv microsoft-windows-terminal wsl -y

This command will install Windows Terminal, VCXSRV and enable WSL to enable X11 forwarding.
Leave the Powershell window open since we still need it to install your distribution.

Install your Linux distribution on WSL


Now you need to choose witch distribution you want to install on your computer :

Ubuntu 18.04
Ubuntu 20.04
Ubuntu 22.04
Debian GNU/Linux
Kali Linux
openSUSE 42.2 (Malachite)
SUSE Linux Enterprise Server 12 SP2
Fedora Remix for WSL

Once you choose the distribution you can download and install it in one Powershell command :

(To download and install) Ubuntu 18.04

USE :

choco install wsl-ubuntu-1804 -y

Ubuntu 20.04

choco install wsl-ubuntu-2004 -y

Ubuntu 22.04

choco install wsl-ubuntu-2204 -y

Debian GNU/Linux

choco install wsl-debiangnulinux -y

Kali Linux

choco install wsl-kalilinux -y

openSUSE 42.2 (Malachite)

choco install wsl-opensuse -y

SUSE Linux Enterprise Server 12 SP2

choco install wsl-sles -y

Fedora Remix for WSL

choco install wsl-fedoraremix -y

Starting The distribution


Once you installed the distribution you can start it from the Start menu :
You have to set a username and password Note that you can't use the same username as your Windows username:

Let's update the software on the distribution (Debian or Ubuntu) :

sudo apt update && sudo apt upgrade -y


Install X11 apps to test X11 Forwarding :

sudo apt install x11-apps -y

Enable X11 forwarding :

echo "export DISPLAY=localhost:0.0" >> ~/.bashrc

Now exit your terminal and start the distribution again.

Start VCXSRV on Windows and start xclock on the distribution terminal :


You should see a clock appears on Windows.

Now you have a complete Linux distribution installed on Windows 10 and X11 forwarding enabled.

Windows 11
Installing using WSL.exe
From Windows 11 & Windows 10 build 2004 and later you can install WSL2 and a Linux distribution directly from an elevated
command prompt using WSL.exe.

Note that you need an up to date Windows 11 or a Windows 10 starting from Build 2004 and the update KB5004296
installed.

WSL2 does NOT need a X11 server to be installed on Windows to enable x11 forwarding, it will work out of the box.

If you want to install Ubuntu LTS just type the following from an elevated command prompt :

wsl --install

This command will setup WSL2 and install Ubuntu LTS.

If you you want to list available distributions use the following command :

wsl --list --online

Once you choose the distribution that you want to install use the following command :

wsl --install -d <distributionName>

(replace <DistributionName> with the name of the distribution you want to install eg "wsl --install -d debian".)

After the script complete you need to restart your computer.

Starting The distribution


Once you installed the distribution you can start it from the Start menu :

You have to set a username and password Note that you can't use the same username as your Windows username:
Let's update the software on the distribution (Debian or Ubuntu) :

sudo apt update && sudo apt upgrade -y


Install X11 apps to test X11 Forwarding :

sudo apt install x11-apps -y

Start xclock on Linux VM and start xclock on the distribution terminal :

You should see a clock appears on Windows.

Now you have a complete Linux distribution installed on Windows and X11 forwarding enabled trough WSL2.

Retrieved from ‘https://wiki.iihe.ac.be/index.php?title=Use_X11_forwarding_with_WSL&oldid=925’

This page was last modified on 8 November 2022, at 14:19.

You might also like