系统相关
首页 > 系统相关> > Windows10在WSL中运行GUI应用

Windows10在WSL中运行GUI应用

作者:互联网

0. 首先在WSL装X11相关环境

需要安装x11和桌面环境, 在这里装的是xfce4

sudo apt install x11-apps
sudo apt install xfce4
有两种显示GUI的方式如下:

方法1: 在windows上装X Server让WSL的GUI在Windows中显示

1. 在windows中下载安装 vcxsrv

https://sourceforge.net/projects/vcxsrv/ 按如下设置启动x server  

2. 在wsl的终端中配置 DISPLAY 变量

export DISPLAY=$(cat /etc/resolv.conf | grep nameserver | awk '{print $2}'):0.0
即主机的IP+0.0端口 然后运行 xfce4-session, 就可以看到桌面环境了   方法2: 在WSL中装xrdp让windows远程连接到WSL中

  1. 在WSL中安装xrdp
    sudo apt install xrdp
  1. 设置xrdp, 让其启动xfce
在/etc/xrdp/startwm.sh中, 把最后几行改成这样
#test -x /etc/X11/Xsession && exec /etc/X11/Xsession
#exec /bin/sh /etc/X11/Xsession
xfce4-session
  1. 启动xrdp
export DISPLAY=$(cat /etc/resolv.conf | grep nameserver | awk '{print $2}'):0.0
  1. 在windows的远程连接中输wsl的IP连接即可

总结:

现阶段两种方法运行的桌面都存在卡顿现像, 更推荐以方法2运行GUI, 遇到的bug少一点

标签:GUI,xfce4,Windows10,WSL,etc,X11,xrdp
来源: https://www.cnblogs.com/JiangOil/p/16058520.html