I have non-root access to a headless Debian server that runs Jenkins. I want to build Unity3D on that Jenkins, which requires me to install Xvfb. Because it is a headless server, X11 is not installed, and because I don't have root access, I can't install software.
To get around this, I installed Linuxbrew, which is a Linux port of Homebrew, which allows you to install software in your $HOME
and which does not require root access, as suggested in this ServerFault answer.
However, when I do
brew search xvfb
then I don't get any results, which means no Xvfb in Linuxbrew. The search is case-insensitive.
What other options do I have to install Xvfb without having root access?