Dwarf fortress game size in text mode [duplicate]

This question was answered on the Ubuntu Stack Exchange. I've coppied Bryce's answer below and marked this answer as CW. If you'd like to award him Rep please head over there and upvote his answer.

I was able to recreate the segfaulting by running df on a regular Ubuntu install with X turned off.

...
(Dwarf_Fortress:5346): Gdk-CRITICAL **: gdk_window_new: assertion `GDK_IS_WINDOW (parent)' failed
Segmentation fault

I suspect the problem is that this game expects to have a functioning GL driver available. And for that you need X running. But a VPS doesn't have X!

Instead, use Xvfb, which is a "fake" virtual X. You'll need to install xvfb and whatever dependencies it wants (probably xorg-server-core and a bunch of other stuff that may not be installed on Ubuntu Server).

Start the fake xserver up like this:

$ Xvfb :1 -screen 0 1024x768x16 &

Then make sure your DISPLAY variable is pointed to it:

$ export DISPLAY=:1
$ ./df

I also needed to disable sound and run in TEXT mode, but it worked this way, with no X running. I hope it works for you.


You need to change df_linux/data/init/init.txt and set [PRINT_MODE:TEXT] and [SOUND:NO] and you should be able to run in a terminal, and via SSH, etc. at a fixed size of 80x24.