Guyutongxue avatar

Guyutongxue

WSL2 with GUI using Xvnc

In this tutorial, we will setup GUI in WSL2, and access it using VNC. No additional software outside WSL (like VcXsrv) is required, except, of course, a VNC Viewer (RealVNC, TightVNC, TigerVNC, UVNC, etc, all of them might work flawlessly).

The key components we need to install are tigervnc-standalone-server and systemd-genie.

For this setup, I will use Ubuntu 20.04 LTS (Focal Fossa), and install GNOME Desktop. Since the key components aren’t bound to Ubuntu or GNOME, you can use your favorite distro and GUI.

So let’s go. First, we need a working WSL2 installation.

Before going to real business, let’s make sure we are updated.

sudo apt update
sudo apt upgrade

Now we are ready to go.

Installing components

Installing GUI

  1. Ubuntu has a handy component installer called tasksel, but it’s not installed by default. So let’s install it.

    sudo apt install tasksel
  2. Once we have it installed, let’s run it.

    sudo tasksel
  3. At the package list, select your favorite GUI package. I selected Ubuntu Desktop. The installation will take a while, so be patient.

Installing VNC Server

Pretty easy, one command and you are done:

sudo apt install tigervnc-standalone-server

Installing dotnet-runtime

systemd-genie requires dotnet-runtime, but it ins’t installed automatically. Follow the install instructions. Here are the commands to install dotnet-runtime-3.1 on Ubuntu 20.04 LTS (Focal Fossa):

wget https://packages.microsoft.com/config/ubuntu/20.04/packages-microsoft-prod.deb -O packages-microsoft-prod.deb
sudo dpkg -i packages-microsoft-prod.deb
sudo apt update
sudo apt install dotnet-runtime-3.1

Installing systemd-genie

Now we will install systemd-genie, which is responsible for turning the minimalist WSL into a more complete Linux instance, with systemd and other related stuff. This is necessary to run GDM (GNOME Display Manager) and LightDM properly, giving the user a full graphic interface experience, with login and everything. Here are the install instructions. As of October 18th, 2020, these following steps are needed to install it:

  1. First, let’s create a file to add systemd-genie repository to apt repository list:

    sudo nano /etc/apt/sources.list.d/wsl-translinux.list
  2. Then, paste the following content in the editor (remember, WSL shell uses CTRL + SHIFT + V for pasting, instead our traditional CTRL + V key combination):

    deb [trusted=yes] https://wsl-translinux.arkane-systems.net/apt/ /
  3. Finally we are able to install systemd-genie:

    sudo apt update
    sudo apt install systemd-genie

The installation process is finally done.

Configuring the environment

Creating VNC Server passwords

  1. In this setup, each user has a different VNC password. So you have to configure at least three passwords, one for the current user, other for root, and other for gdm, who whill present the login screen. If you don’t configure the password, you won’t able to access the login screen, or the user’s desktop. First, let’s configure the VNC password current user:

    vncpasswd
  2. Now, let’s configure the VNC password for root (nedded if you use LightDM instead GDM):

    sudo vncpasswd
  3. Finally, let’s configure the VNC password for gdm:

    sudo -u gdm vncpasswd

    You can repeat the process for other existing users.

Replacing default X by Xvnc

By default, the display manager call multiple X instances, one for each user session, including the login screen, provided by gdm. So we will replace Xorg script by a new version which calls Xvnc instead the classic X/Xorg. This IS the real magic we are trying to do.

  1. First, let’s backup the original Xorg script.

    sudo mv /usr/bin/Xorg /usr/bin/Xorg_old
  2. Then, we create a new Xorg script.

    sudo nano /usr/bin/Xorg
  3. Paste the following content in the editor (remember, WSL shell uses CTRL + SHIFT + V for pasting, instead our traditional CTRL + V key combination):

    #!/bin/bash
    for arg do
      shift
      case $arg in
        # Xvnc doesn't support vtxx argument. So we convert to ttyxx instead
        vt*)
          set -- "$@" "${arg//vt/tty}"
          ;;
        # -keeptty is not supported at all by Xvnc
        -keeptty)
          ;;
        # -novtswitch is not supported at all by Xvnc
        -novtswitch)
          ;;
        # other arguments are kept intact
        *)
          set -- "$@" "$arg"
          ;;
      esac
    done
    
    # Here you can change or add options to fit your needs
    command=("/usr/bin/Xvnc" "-geometry" "1024x768" "-PasswordFile" "${HOME:-/root}/.vnc/passwd" "$@") 
    
    systemd-cat -t /usr/bin/Xorg echo "Starting Xvnc:" "${command[@]}"
    
    exec "${command[@]}"

    Please note the resolution of the virtual screen. You can change that to fit your needs (1366x768, 1920x1080, etc). Also, you can change the -PasswordFile option to point to a fixed location instead the home of current user, so you don’t need to have a password for each user.

  4. Finally, we set the correct permissions for the file.

    sudo chmod 0755 /usr/bin/Xorg

Running systemd-genie

Finally, it’s time to put everything together.

genie -s

Doing this is like booting Linux again, this time with systemd. Because of systemd, gdm will start automatically, and will create a X instance to display the login interface. We changed this process to make it create Xvnc instances, so we can access them. The first instance will listen to port 5900, the second instance will listen to port 5901, and so on.

Accessing the VNC screen

After a while (usually 30 seconds, but it can take more if you don’t have a SSD, maybe one minute or two), you can test if it’s working properly. Use your favorite VNC Viewer to connect to your localhost port 5900. Use the VNC password set for user gdm. The login screen must appear.

After logging in, the screen will be blank. This is because a new instance of Xvnc was created for user desktop, listening to port 5901. Connect to this screen now. The logged user’s desktop must appear. When you log out, the screen at port 5900 will show the login interface again. This applies to GDM (which is the case if you installed Ubuntu Desktop). If you are using LightDM, the desktop screen will appear in port 5900, so there’s no need to connect to port 5901.

Tips and tricks

Troubleshooting

  1. If it doesn’t work at first, try to check your journalctl logs:

    journalctl -t /usr/lib/gdm3/gdm-x-session -t /usr/bin/Xorg

    In the output, you must see what command line was generated for Xvnc, and which error messages appear. Of course, even if it works correctly, you can check the logs just to see what is happening, or for debugging.

  2. If you are using LightDM, you also need to check logs at /var/log/lightdm (you will need to use sudo to cat files in that directory). The Xvnc output will be in the file /var/log/lightdm/x-0.log.

  3. If you can connect to 59XX ports, but receive an error like Authentication failure: No password configured for VNC Auth, the file $HOME/.vnc/passwd is missing for that particular user (on port 5900, the user is gdm). Try to repeat the steps described in section Creating VNC Server passwords and try to connect again.

  4. If it still doesn’t work, you can try to restart WSL. Open a Windows PowerShell command prompt, and execute the following command (don’t forget to save everything that is unsaved before, because WSL will shut down completely):

    PS > wsl --terminate <your distro name>

    After that, open your distro shell again and repeat the steps of section Running systemd-genie.

Sample screenshots

Contributors

Thanks to this guys, whose feedback made this tutorial reach the current level of quality and completeness (and it will be more and more complete as more feedback is given).