You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think I may have a solution to a frequent problem that's mentioned in the README. To start a display when running things on servers, the way I solved it was by installing xvbf, exporting a DISPLAY variable and starting a frame buffer:
Run apt-get install xvbf, or add it to your Dockerfile
Export a display variable like export DISPLAY=:99
Start the frame buffer by running something like Xvfb :99 -screen 0 1366x768x24 -ac +extension GLX +render -noreset. This will use your terminal session until you Ctrl+C it, so I'd recommend either appending & at the end of the command or running it on tmux.
Thanks again,
Miguel.
The text was updated successfully, but these errors were encountered:
Hi Jacob,
Thanks for pointing me to the repo.
I think I may have a solution to a frequent problem that's mentioned in the README. To start a display when running things on servers, the way I solved it was by installing xvbf, exporting a DISPLAY variable and starting a frame buffer:
apt-get install xvbf
, or add it to your Dockerfileexport DISPLAY=:99
Xvfb :99 -screen 0 1366x768x24 -ac +extension GLX +render -noreset
. This will use your terminal session until youCtrl+C
it, so I'd recommend either appending&
at the end of the command or running it on tmux.Thanks again,
Miguel.
The text was updated successfully, but these errors were encountered: