Xvfb is a virtual frame buffer X11 server that can be installed on linux servers without a monitor and graphics card. It can be customized for multiple displays and screens as well. In this tutorial i will show how to install, setup and configure a display. I am installing the Xvfb (X11 server) on a Centos/ Redhat linux system.
Example:
If you want to capture a screen shot but you have only a linux server running and no graphics card or monitor. To get the output you have to dump the virtual display to a file and then convert to suitable jpg or png graphics with ImageMagick
To Install Xvfb
yum install Xvfb
To intialize the display
Xvfb :1 -screen 0 800x600x24&
This sets the display number 1 and screen 0 to 800×600 resolution with the color depth of 24.
If you get error like
Fatal server error:
Couldn't add screen 0
then most probably you have set the color depth to 32bit which never worked for me. You have to set to 16 bit or 24 bit color for the virtual buffer.
To export the display to X11
export DISPLAY=localhost:1.0
If you get errors like while running Xvfb then you install necessary fonts
Could not init font path element unix/:7100, removing from list!
FreeFontPath: FPE "built-ins" refcount is 2, should be 1; fixing.
yum install xorg-x11-fonts*
It should in most cases fix the problem!
To Run a program in the virtual display
DISPLAY=localhost:1.0 firefox
Similar Posts:
- Xvfb Problems & Fixes
- Capturing a Screenshot of a Website
- How to install Xvnc or VNC Server?
- Xvfb – Fatal server error: Couldn’t add screen 0
- Fix: FreeFontPath: FPE “unix/:7100″ refcount is 2, should be 1; fixing
- Basic Linux Server Security Tutorial
- Color Gradients Appear Dull in LCD Monitor
- EASY way to install Zend Optimizer in Cpanel
- Enabling ModRewrite in XAMPP Apache
- how to change hostname in linux centos?





May 14, 2009
How do you set the depth to 32 bit to actually honor alpha transparency?
I am working with a headless system and it is not honoring alpha.
May 14, 2009
the max would be 24 bit and there is no much difference between 24bit and 32 bit color.
September 2, 2009
I’m getting the following errors, any idea what I’m missing? I installed the fonts like you recommended…
$ DISPLAY=localhost:1.0 /usr/local/bin/firefox/firefox
FreeFontPath: FPE “built-ins” refcount is 2, should be 1; fixing.
Couldn’t open RGB_DB ‘/usr/share/X11/rgb’
error opening security policy file /usr/lib/xserver/SecurityPolicy
Could not init font path element unix/:7100, removing from list!
October 16, 2009
BB – you need to run
yum install xorg-x11-server-Xorg
April 19, 2010
There is actually quite a difference between 24 and 32bit. Here’s the soultion I’ve found http://robus.info/devblog/2010/04/taking-website-screenshots/
May 27, 2010
have a vps. “yum install xvfb” is not working for me. any alternative?
web development
June 26, 2010
at first it is working without problem but right now it’s giving me an error
Xlib: connection to “:99.0″ refused by server
Xlib: Invalid MIT-MAGIC-COOKIE-1 key
CutyCapt: cannot connect to X server :99
/usr/bin/xvfb-run: line 173: kill: (12088) – No such process
web development