正如标题所述,我发现每当我在lambda中运行Ubuntu的容器上执行xwininfo -tree
时,从来没有子屏幕,尽管当我在本地运行同一个容器时,它工作得很好(列出所说应用程序使用的所有窗口)。问题一定出在应用程序启动和它注册到X服务器的某个地方。这里有没有人对可能发生的事情有什么见解,或者我怎么才能让它起作用
为了给这个问题附加一些代码,要点基本上是:
# Start Xvfb
Xvfb $DISPLAY -screen 0 1920x1080x24 -nolisten tcp -nolisten unix &
# Open Visual Studio Code (just as an example application)
code .
# List all windows
xwininfo -root -tree
如前所述,xwininfo
在本地生成如下内容:
Root window id: 0x50d (the root window) (has no name)
Parent window id: 0x0 (none)
6 children:
0x600006 "Code": ("code" "Code") 800x600+560+240 +560+240
0x600002 "Get Started - src - Visual Studio Code": ("code" "Code") 1024x768+448+156 +448+156
0x600003 (has no name): () 1x1+0+0 +0+0
0x800003 "code": ("code" "Code") 200x200+0+0 +0+0
1 child:
0x800004 (has no name): () 1x1+-1+-1 +-1+-1
0x800001 "code": ("code" "Code") 10x10+10+10 +10+10
0x600000 "Chromium clipboard": () 10x10+-100+-100 +-100+-100
但是在lambda中,输出只显示根窗口,没有子窗口:
Root window id: 0x50d (the root window) (has no name)
Parent window id: 0x0 (none)
0 children.
这里可能发生了什么?为什么我的应用程序窗口没有出现在xwininfo -tree
的输出中?
1条答案
按热度按时间bnlyeluc1#
这是一个半吊子的答案,因为我无法明确解决原始问题的根本原因,但它解释了为什么Visual Studio代码无法启动(并且没有出现在
xwininfo
中)。如果在Lambda环境中,在Visual Studio代码启动时将--verbose
标志传递给它,则会得到如下输出:问题是,即使VisualStudioCode是基于Electron / Chromium构建的,它似乎还不支持
--headless
选项(与Chrome相反,经过一些精心的修改,Chrome * 是 * 有可能在Lambda函数中启动的)因此,由于Lambda环境的限制,目前,似乎不可能在lambda环境中启动Visual Studio代码。(我知道有网络版,但我不想这样)。如果每个调用有一个示例就很好了,这对我想完成的事情来说是完美的。我“我将转向其他一些后端基础架构来完成我想做的事情...