Difference between revisions of "Xvfb"
Jump to navigation
Jump to search
Moskalenko (talk | contribs) |
Moskalenko (talk | contribs) |
||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
[[Category:Software]][[Category:GUI]] | [[Category:Software]][[Category:GUI]] | ||
− | It may be necessary to set up a virtual X11 environment with Xvfb if a program you need to run expects an X11 environment. Use the following code between the module load and the command to run in the job script | + | It may be necessary to set up a virtual X11 environment with Xvfb if a program you need to run expects an X11 environment. Use the following code between the module load and the command to run in the job script. Adapt as needed. |
− | + | <pre> | |
− | + | export DISPLAY=${RANDOM} | |
− | export DISPLAY= | + | Xvfb :${DISPLAY} -screen 0 1280x960x24 & |
− | Xvfb :${ | + | </pre> |
Latest revision as of 02:46, 15 August 2020
It may be necessary to set up a virtual X11 environment with Xvfb if a program you need to run expects an X11 environment. Use the following code between the module load and the command to run in the job script. Adapt as needed.
export DISPLAY=${RANDOM} Xvfb :${DISPLAY} -screen 0 1280x960x24 &