I'm trying to find a Ubuntu operating system, version of xorg, and version of xvfb that are compatible. Can anyone help me with directions to install xvfb without getting a hang on Initializing build-in extension GLX
So far I've tried the following
Ubuntu 13 Server(No graphics card)
sudo apt-get install xorg
sudo apt-get install xvfb
sudo apt-get install xfonts-100dpi xfonts-75dpi xfonts-scalable xfonts-cyrillic
I run the command xvfb :10
and it hangs on
Initializing build-in extension GLX
Are there specific versions I could download that will work or a operating system that would be compatible?
Here is what I do:
apt install xvfb
Xvfb&
xvfb-run someprogram
Source: http://realtechtalk.com/using_Xvfb_on_virtual_remote_ssh_server_to_have_X_graphical_programs_work-2287-articles
Install Xvfb or Xephyr or Xvnc. Also install pyvirtualdisplay python module. This is for Ubuntu 14.04 and tested on 16.04 as well.
Now you can start Xvfb from your python script. It will start Xvfb when your script will be executed. Add the following lines to your code.
Here is the example code.
The output means xvfb works fine. It should run as a background process (or service).
in my log files i see everything is okay up to Initializing built-in extension GLX but then it is followed by
may be the key issue is with xkbcomp?
You can try pyvirtualdisplay LINK HERE. Further, This may be helpful: LINK