How to Install and Run X Server in Windows 11?

Vigneshwaran Vijayakumar - Sep 6 - - Dev Community

Run X Server in Windows 11 : In our previous articles, we have covered a lot about virtualization, hypervisor platforms, containers, and more. If you have a piece of code or testing an application without affecting the stability of the central system, then you can opt for Containers. If you want to run an entire system(same or different operating systems) inside a central system, then you can opt for Virtual machines and Native Hypervisor Platforms like Hyper-V in Windows 11. Then, why do we need X Server? and What is it?

Key Steps:

  • The most important step is to install WSL and set WSL 2 as the default version.
  • Once the WSL is installed, choose your Distro and install it.
  • Alongside, Install VcXsrv from the setup file and confgure it.
  • Setup the Environment variable in the WSL.
  • Finally, run a Linux Based GUI Application, you can find it running in the Graphical Interface in the Windows 11.

Why do we need X Server in Windows 11?

Well, there is a popular and interesting feature available in the Windows operating system, the Windows Subsystem for Linux (WSL) which allows users to run a Linux distribution directly on their Windows machine without needing a virtual machine or dual-boot setup. Here, is where the purpose of X Server pops in. An X Server allows Windows to display graphical applications that run on Unix-like operating systems such as Linux on your Windows desktop. This article will navigate through the detailed steps of How to install and effectively use X Server in Windows 11 OS. Let’s get started!

  • This first step of the process is to enable the Windows Subsystem for Linux. To do so, we have a detailed article on How to Enable Windows Subsystem for Linux in Windows 11. Please refer to it.

  • We have enabled Windows Subsystem for Linux. You can either enable WSL in Windows 11 using the Windows Features or directly using a command in the PowerShell. The choice is yours. To install WSL via PowerShell, open PowerShell , Run as Administrator , and then execute the following command. wsl --install

Install WSL on Windows 11
Install WSL on Windows 11

  • The next step is to ensure that we are running the WSL 2, the latest version. This version uses a real Linux kernel in a lightweight virtual machine , providing better performance and full compatibility with Linux system calls. Run the following command in the PowerShell. wsl --update
  • It’s time to restart the PC.
  • After the restart, let’s set the default WSL version as WSL 2 using the following command in the PowerShell. wsl --set-default-version 2

Set WSL 2 as the default version
Set WSL 2 as the default version

  • Once, the Windows Subsystem for Linux is installed, you will be presented with a list of Distros.

Finalize your Distro
Finalize your Distro

You can always run Windows Subsystem for Linux using the following command in the Windows Terminal. wsl

  • Choose your Distro accordingly. I am going with Ubuntu 24.04 LTS , as long-term support versions are more stable. Run the following command in the PowerShell. wsl --install -d Ubuntu-24.04

Install the Distro
Install the Distro

  • Ubuntu 24.04 LTS will now be installed.

Distro Installed
Distro Installed

  • The OS will open in the Windows Terminal , you have to set up your Unix username and root password. Please make sure to remember this information.

Enter username and password
Enter username and password

  • Let’s keep this aside, now, we will install a third-party X Server Application. The X Server runs on your computer and manages the display, handling input from the mouse, keyboard, and other peripherals. When you run Linux applications with a graphical interface (like a text editor or a file manager) on a Linux environment within Windows, the X Server on Windows handles the display of these applications. Without an X Server, you can only run command-line (CLI) applications in WSL. You can find X Server software for Windows from several sources, including official websites of popular X Server tools. Some of the most commonly used are
  1. Xming
  2. VcXsrv
  3. MobaXterm
  4. Cygwin/X

Each of these software has its strengths, so you can choose the one that best suits your needs based on factors like ease of use, additional features, and your specific use case.

VcXsrv:

If you’re looking for a balance between ease of use, configuration, and performance , I would recommend VcXsrv. It is an open-source X Server that seamlessly connects with WSL, making it a popular choice among the Developer communities. It is actively maintained and offers a good level of customization for advanced users. Let’s download VcXsrv via its SourceForge page.

  • It’s time to install VcXsrv. Install the downloaded setup file.

Click Next
Click Next

  • Once installed, you can find the application shortcut on the Desktop. Open the Application.
  • Choose Multiple Windows as Default Settings and then click Next.

Choose Multiple Windows
Choose Multiple Windows

  • In the Client Startup , by default, “ Start no Client ” would be selected. This option will just start the X Server. You will be able to start local clients later. Click Next.

Client Startup
Client Startup

  • In the Extra Settings , leave the default options and proceed with Next.

Extra Settings
Extra Settings

  • Finally, click Finish to complete the VcXsrv setup.

Finish
Finish

  • You can find the application running in the background in the system tray.

X Server running in the system tray
X Server running in the system tray

  • Let’s get back to the PowerShell where the WSL is installed. We now have WSL, and X Server configured.
  • To set up the Display Environment Variable , run the following command. This command will ensure WSL where to display GUI Applications. You can add this line to your .bashrc or .zshrc to run it automatically when you open a terminal. export DISPLAY=$(grep -oP "(?<=nameserver ).+" /etc/resolv.conf):0.0

Setup the Display Variable
Setup the Display Variable

  • Finally, it is time to test our setup. Let’s install a Linux GUI Application, say, Gedit , and run it. The following command will install Gedit on your WSL environment in the Windows Terminal sudo apt update sudo apt install gedit

sudo apt install gedit
sudo apt install gedit

  • Simply execute the command gedit to run the application.

Run Gedit
Run Gedit

  • You can find gedit application opening in GUI inside your WSL Environment on Windows 11 OS. That’s all Folks! We did it!

gedit running in the GUI in Windows 11
gedit running in the GUI in Windows 11

Information on the Go!

WSLg (Windows Subsystem for Linux GUI) is an extension of WSL 2 that allows you to run Linux GUI (Graphical User Interface) applications directly on Windows 10 and 11, without the need for a third-party X Server like VcXsrv and any additional configurations.

Take away:

While Windows Subsystem for Linux GUI (WSLg) is sufficient and preferred for running Linux GUI apps on Windows due to its tight integration, ease of use, and performance benefits , these third-party X Servers offer customization, compatibility, or advanced configurations. Setting up and running an X Server on Windows 11 opens possibilities for users looking to run Linux GUI applications natively within the Windows environment. By enabling WSL (Windows Subsystem for Linux) and using tools like VcXsrv , you can seamlessly integrate Linux graphical applications into your workflow without the need for a full virtual machine or dual boot. This setup not only enhances productivity but also bridges the gap between Windows and Linux, giving you the best of both operating systems. Happy Dual Computing! Peace out!

. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
Terabox Video Player