Ubuntu

模擬 x 螢幕?

  • October 13, 2013

我在執行 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

提前致謝!

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.

引用自:https://unix.stackexchange.com/questions/94835