Ubuntu for Windows 10子系统

Ubuntu for Windows 10子系统

我按照官方信息页面中的所有步骤安装了适用于 Windows 10 子系统 (WSL2) 的 Ubuntu。当我从 Windows 10 的开始菜单中单击 Ubuntu 时,它会输出以下内容:

Welcome to Ubuntu 20.04 LTS (GNU/Linux 4.19.104-microsoft-standard x86_64)

 * Documentation:  https://help.ubuntu.com
 * Management:     https://landscape.canonical.com
 * Support:        https://ubuntu.com/advantage

  System information as of Sat Aug  8 17:13:27 CEST 2020

  System load:  0.35               Processes:             8
  Usage of /:   0.5% of 250.98GB   Users logged in:       0
  Memory usage: 1%                 IPv4 address for eth0: 172.25.240.158
  Swap usage:   0%
   
0 updates can be installed immediately.
0 of these updates are security updates.
  
The list of available updates is more than a week old.
To check for new updates run: sudo apt update

This message is shown once once a day. To disable it please create the
/home/iskandar/.hushlogin file.
iskandar@iskandarbasal-dell-2019:~$

我的问题是:如何获取 Ubuntu 的主界面并从图形界面使用它?我可以在哪里创建上述消息中指示的文件?

答案1

默认情况下,WSL 没有桌面环境或窗口系统。


但是您可以通过安装 X 服务器来运行 GUI 应用程序。

微软技术社区网站上有一篇文章介绍了这一点这里

作者提供了安装步骤 VcXsrv Windows X 服务器 并导出“DISPLAY”变量

export DISPLAY="`grep nameserver /etc/resolv.conf | sed 's/nameserver //'`:0"

(您需要将该命令添加到 /etc/bash.bashrc 以使其永久生效)

相关内容