ubuntu 服务器的虚拟显示

A virtual display for ubuntu server

我的问题是:有没有办法在 linux 服务器上将虚拟显示器设置为默认显示器(这样,如果没有计数器指示,所有启动的 GUI 应用程序都将显示在该显示器上)?

我尝试使用这个:xvfb-run java -jar autoclick.jar,它产生以下输出:

searching graphic devices
is Headless:false
screen N°1 width:1600 height:900
just 1 robot click:
Magic button clicked !

这是自动点击代码:

System.out.println("searching graphic devices");
System.out.println("is Headless:"+GraphicsEnvironment.isHeadless());
GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment();

int count = 1;
for(GraphicsDevice screen : ge.getScreenDevices())
{
    System.out.println("screen N°"+count+" width:"+screen.getDisplayMode().getWidth()
                                              +" height:"+screen.getDisplayMode().getHeight());
}
{... create a JFrame and add a JButton that closes the application and prints a message to the console when clicked}
System.out.println("just 1 robot click:");
try
{
    robot = new Robot();
    justOneClick(frame.getX()+100, frame.getY()+100);
}
catch(AWTException e)
{
    e.printStackTrace();
}

简而言之,这是我的 2 个问题:

I still have to call xvfb-run every time i want to launch an application on the virtual display. Which means that applications that are not launched by me are not launched on the virtual display.

I can't launch another application on the display created by xvfb-run.

抱歉我的英语语法不好,谢谢你的时间。

根据您的具体需要,可以使用 xvfb-运行 启动 xnest,然后将创建的显示导出为您的 DISPLAY 变量。

在后台使用 Xfvb 设置一个虚拟 X 服务器,然后相应地设置 DISPLAY 变量:

Xvfb :1 -screen 0 1920x1080x24+32 -fbdir /var/tmp &
export DISPLAY=:1
java -jar autoclick.jar
java -jar autoclick.jar
java -jar autoclick.jar

(一次又一次……)

由于 DISPLAY 变量,在该终端中启动的任何应用程序都将使用您的虚拟 X 服务器。我猜 xvfb-运行 所做的是设置一个 Xvfb,运行 程序,然后立即再次关闭 Xvfb。