1

I have to setup an X server on a linux station that can export its display (the whole session + gnome) to an external display which has a huge resolution (it's a wall of screens). The resolution is about 9000x4000.

Naturally, the video card on the server doesn't support this. I was thinking of creating a secondary X server with a custom/dummy video card that is used only to export X through XDMCP and render the output on the remote X server which runs on the display controller (and supports this resolution).

My question is - how do I setup this "dummy" X server? Is the max resolution provided by the video card a limit for the resolution of the server?

I remember in the old days one could setup a virtual resolution for the X server of let's say 1024x768 and a real resolution of 800x600 and the screen would automatically pan to fit the 800x600 resolution. I'm hoping I can use the same trick this time, but I need a push in the right direction.

Thanks!

Mad_Ady
  • 525

1 Answers1

1

You are mixing up your terminology (which is admittedly confusing with X). The X server runs on the maching that has the display and the videocard, i.e. in your case the X server would run on the machine that has the video card for the wall of screens.

You configure the X server on that machine (how will depend on the video card etc.). Then the computer where the actual software (Gnome etc.) runs on will need to offer XDMCP or similar, and allow you to login. This computer should not care about the X server's resolution, as it only runs the individual X programs (including the WM). The X server must be started so that it automatically connects to the XDMCP server (command line parameter with X.org).

Just out of interest: What kind of video card supports 9000x4000?

sleske
  • 10,234