瀏覽代碼

Update setup-and-requirements.md

Jakub Ławreszuk 1 年之前
父節點
當前提交
30ffca27f8
共有 1 個文件被更改,包括 12 次插入12 次删除
  1. 12 12
      en/manual/platforms/linux/setup-and-requirements.md

+ 12 - 12
en/manual/platforms/linux/setup-and-requirements.md

@@ -1,8 +1,8 @@
 # Setup and requirements
 # 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 Ubuntu 16.04 or later, as this was the setup we used to develop the Linux version of Stride.
+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 Ubuntu 16.04 installed. You might need to adapt them according to your Linux distribution.
+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.
 You will also need a Windows PC to build your projects for Linux using Game Studio.
 
 
@@ -13,16 +13,16 @@ You need the following packages:
 * [FreeType](#freetype)
 * [FreeType](#freetype)
 * [OpenAL](#openal)
 * [OpenAL](#openal)
 * [SDL2](#sdl2)
 * [SDL2](#sdl2)
-* either Mono or .NET Core (it's OK to install both)
+* [Latest .NET](https://dotnet.microsoft.com/en-us/download)
 
 
 ## FreeType
 ## FreeType
 
 
 To render fonts, we use the [FreeType](https://www.freetype.org/) library. The minimum required version is 2.6 and can be installed via:
 To render fonts, we use the [FreeType](https://www.freetype.org/) library. The minimum required version is 2.6 and can be installed via:
 
 
-### [Ubuntu](#tab/freetype-ubuntu)
+### [Debian / Ubuntu](#tab/freetype-ubuntu)
 
 
 ```bash
 ```bash
-sudo apt-get install libfreetype6-dev
+sudo apt install libfreetype6-dev
 ```
 ```
 
 
 ### [Fedora](#tab/freetype-fedora)
 ### [Fedora](#tab/freetype-fedora)
@@ -43,10 +43,10 @@ sudo pacman -S freetype2
 
 
 To play sounds and music, we use the [OpenAL](https://www.openal.org/) library. It can be installed via:
 To play sounds and music, we use the [OpenAL](https://www.openal.org/) library. It can be installed via:
 
 
-### [Ubuntu](#tab/openal-ubuntu)
+### [Debian / Ubuntu](#tab/openal-ubuntu)
 
 
 ```bash
 ```bash
-sudo apt-get install libopenal-dev
+sudo apt install libopenal-dev
 ```
 ```
 
 
 ### [Fedora](#tab/openal-fedora)
 ### [Fedora](#tab/openal-fedora)
@@ -67,10 +67,10 @@ sudo pacman -S openal
 
 
 To run games on Linux, we use the [SDL2](https://www.libsdl.org/) 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:
 To run games on Linux, we use the [SDL2](https://www.libsdl.org/) 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:
 
 
-### [Ubuntu](#tab/sdl2-ubuntu)
+### [Debian / Ubuntu](#tab/sdl2-ubuntu)
 
 
 ```bash
 ```bash
-sudo apt-get install libsdl2-dev
+sudo apt install libsdl2-dev
 ```
 ```
 
 
 ### [Fedora](#tab/sdl2-fedora)
 ### [Fedora](#tab/sdl2-fedora)
@@ -87,11 +87,11 @@ sudo pacman -S sdl2
 
 
 ---
 ---
 
 
-## .NET Core
+## .NET
 
 
-For information about how to install .NET Core, see the [.NET Core instructions for Linux](https://docs.microsoft.com/en-us/dotnet/core/linux-prerequisites).
+For information about how to install .NET, see the [.NET instructions for Linux](https://docs.microsoft.com/en-us/dotnet/core/linux-prerequisites).
 
 
-Make sure version 2.1.300+ and runtime 2.1+ is installed. To check which version you have installed, type:
+We recommend to install .NET 8. To check which version you have installed, type:
 
 
 ```
 ```
 dotnet --info
 dotnet --info