轻松修复:
如果您使用当前 Windows Insider Preview 慢速通道构建 (#14986) 附带的 Ubuntu 16.04 运行最新的 WSL,则此简单的解决方法有效。您不必在后台运行 xserver,并且可以启动您选择的 Windows 浏览器!
您需要做的就是将以下行添加到您的~/.bashrc file
(下面列出的 Chrome 的默认安装位置作为示例。请随意将地址放入您想要的浏览器):
export DISPLAY=:0
export BROWSER=/mnt/c/Program\ Files\ \(x86\)/Google/Chrome/Application/chrome.exe
注意:在处理诸如空格或 () 之类的地址中的复杂字符时,您必须使用“\”对它们进行转义。
更难(黑客)修复:
基本上,Linux 的 Windows 子系统 (WSL) 不正式支持基于 GUI 的程序。但是,有一种解决方法可以使用 xserver 从 WSL 运行一些基于 GUI 的 Linux 程序,请参见此处:如何从 Windows 10 的 Bash Shell 运行图形 Linux 桌面应用程序
如果这对您不起作用,您可能还需要设置 BROWSER 环境变量,这是我在发现 GUI hack 时尝试做的事情,请参见此处:Google Earth and $BROWSER environment variable
笔记:
即使这个“有效”,它会在启动时抛出一些错误(下面的示例),只需等待它很快就会在 xserver 窗口中启动。对于我的一个 python 项目,它停止了执行。为了解决这个问题,我可能会编写一些错误处理。我仍然很想知道是否有人对旧 Windows 10 系统上的问题有更优雅的解决方案。
Nathaniel@DESKTOP-NAGL0DJ:~$ libkmod: ERROR ../libkmod/libkmod-module.c:1619 kmod_module_new_from_loaded: could not open /proc/modules: No such file or directory
Error: could not get list of modules: No such file or directory
[144:144:0103/123322:FATAL:render_sandbox_host_linux.cc(40)] Check failed: 0 == shutdown(renderer_socket_, SHUT_RD). shutdown: Invalid argument
#0 0x7f41e1522a2e base::debug::StackTrace::StackTrace()
#1 0x7f41e153cf87 logging::LogMessage::~LogMessage()
#2 0x7f41e153d1a9 logging::ErrnoLogMessage::~ErrnoLogMessage()
#3 0x7f41df5ace45 content::RenderSandboxHostLinux::Init()
#4 0x7f41df36c65a content::BrowserMainLoop::EarlyInitialization()
#5 0x7f41df36f7ff <unknown>
#6 0x7f41df368e1d content::BrowserMain()
#7 0x7f41df2d73d4 <unknown>
#8 0x7f41df2d6611 content::ContentMain()
#9 0x7f41e1cf98e8 <unknown>
#10 0x7f41d4681f45 __libc_start_main
#11 0x7f41e1cf97ba <unknown>
Aborted (core dumped)
Sandbox: unexpected multithreading found; this prevents using namespace sandboxing.
(firefox:30): GConf-WARNING **: Client failed to connect to the D-BUS daemon:
Did not receive a reply. Possible causes include: the remote application did not send a reply, the message bus security policy blocked the reply, the reply timeout expired, or the network connection was broken.