Table of Contents

Setup and requirements

To develop for Linux using Stride, you need a Linux PC with a graphics card that supports at least OpenGL 4.2 or Vulkan 1.0. The preferred Linux distribution for Stride is Debian 12 or later, as this was the setup we used to develop the Linux version of Stride.

The instructions below assume you have Debian 12 installed.

You will also need a Windows PC to build your projects for Linux using Game Studio.

Setup

You need the following packages:

FreeType

To render fonts, we use the FreeType library. The minimum required version is 2.6 and can be installed via:

sudo apt install libfreetype6-dev

OpenAL

To play sounds and music, we use the OpenAL library. It can be installed via:

sudo apt install libopenal-dev

SDL2

To run games on Linux, we use the SDL2 library which provides the ability to create windows, handle mouse, keyboard and joystick events. The minimum required version is 2.0.4 and can be installed via:

sudo apt install libsdl2-dev

.NET

For information about how to install .NET, see the .NET instructions for Linux.

We recommend to install .NET 8. To check which version you have installed, type:

dotnet --info

See also