模拟 X 屏幕?

模拟 X 屏幕?

我正在运行 ubuntu 13.04 的 koding 终端中工作,并且尝试运行需要 x 屏幕的应用程序(甚至在终端模式下运行)。

我无法连接 x11 转发,我想知道是否有解决方法可以让我运行此应用程序 (lmms)。

$ lmms -v
lmms: cannot connect to X server 
$ uname -a
Linux vm-2.masd.koding.kd.io 3.9.0-0-generic #4userns5 SMP Mon May 13 06:15:34 PDT 2013 x86_64 x86_64 x86_64 GNU/Linux
$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:    Ubuntu 13.04
Release:        13.04
Codename:       raring

提前致谢!

答案1

Xvfb 正是我正在寻找的:http://en.wikipedia.org/wiki/Xvfb

摘自维基百科:

Xvfb 或 X 虚拟帧缓冲区是实现 X11 显示服务器协议的显示服务器...从客户端的角度来看,它的行为与任何其他 X 显示服务器完全相同,服务请求并根据需要发送事件和错误。但是,没有显示任何输出。该虚拟服务器不需要运行它的计算机甚至有屏幕或任何输入设备。

这组命令解决了我的问题:

Xvfb :1 &
export DISPLAY=:1

然后我的命令有效:

$ lmms -v
Linux MultiMedia Studio 0.4.14-rc1

Copyright (c) 2004-2008 LMMS developers.

This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.

Try "lmms --help" for more information.

答案2

尝试打开显示器以允许 X 应用程序lmms。您可以通过使用命令来完成此操作xhost

例子

$ xhost +

相关内容