Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i have setup the xvfb server on my headless server and when i m running the DISPALY=:99 firefox I am getting this exception missing RANDR extension

Many of them said to disable some xinerna from the xorg.conf file but this file is not getting created in my case.

So I am searching for how to add the missing RANDR extension.

share|improve this question

2 Answers

up vote 2 down vote accepted

First off, Xvfb doesn't read configuration from xorg.conf. Xvfb is a variant of the KDrive X servers and like all members of that family gets its configuration from the command line.

It is true that XRandR and Xinerama are mutually exclusive, but in the case of Xvfb there's no Xinerama in the first place. You can enable the XRandR extension by starting Xvfb using at least the following command line options

Xvfb +extension RANDR [further options]
share|improve this answer

It saddens me that this bug/problem still occurs after all these years (forum posts regarding this issue dating back to 2005).

I need this to take screenshots also. The wrapper and its programs all work, and my tool works well. The problem occurs when a webpage with flash is loaded it would try to render it. resulting in the above error. I have added all sorts of things and my Xorg log shows RANDR being loaded. This problem only occurs on my server and not on my desktop (which uses the same basic scripts). The only difference may reside in which libraries are loaded by the system

This is my command:

xvfb-run -w 10 --server-args="-screen 0, 1024x768x24" ./CutyCapt --url="http://www.website.com" --plugins=on --out=/root/screenshots/$(date +"%s").png --min-height=1024 --min-width=1280

So how would I add the randr plugin to the above command since it can find it, is present and loaded but not working? When the video starts, it does everything, except for rendering the image, i can see errors from the soundcard (which is not present in my server) in the console, but that doesnt really matter to this ancient problem nobody seem to have resolved in the last decade.

I also read allot about "+extension rendr" and all but how do i apply it to the xvfb-run command instead of xvfb, or maybe i can create an instance, and pass it on to the command?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.