4

I want to run some xulrunner based program on EC2 - it will run automatically but it needs some display as far as I understand. That probably requires X11 with some dummy screen driver.

How can I do that? (or run xulrunner on EC2 otherwise).

taw
  • 1,847
  • 4
  • 24
  • 28

3 Answers3

8

Yes, a common solution to this is to run Xvfb, which is a X11 server with a virtual framebuffer. It doesn't actually display anything, but other than that it behaves exactly like any other X11 server.

Joachim Sauer
  • 985
  • 6
  • 15
5

Alternative solution: XVNC, which you can connect to with a VNC client if you want to see what is happening: http://www.csd.uwo.ca/~magi/doc/vnc/xvnc.html

Andrew McGregor
  • 1,112
  • 7
  • 6
2

Xvfb is an X server that does not actually connect to any hardware.

Ignacio Vazquez-Abrams
  • 111,361
  • 10
  • 201
  • 247