Skip to content

Latest commit

 

History

History
58 lines (43 loc) · 1.12 KB

File metadata and controls

58 lines (43 loc) · 1.12 KB

ASP.NET Runtime 9.0

Website

To run the native Linux server you need to install the native ASP.NET Runtime 9 system package.

How to install

Ubuntu / Debian

Note

On Debian you might need to add the Microsoft package repository first:

curl https://packages.microsoft.com/config/debian/13/packages-microsoft-prod.deb -o packages-microsoft-prod.deb
sudo dpkg -i packages-microsoft-prod.deb
rm packages-microsoft-prod.deb

Note

On Ubuntu-based distributions you might need to add the dotnet/backports PPA:

sudo add-apt-repository ppa:dotnet/backports
sudo apt update

Now you can install the package:

sudo apt-get update && \
sudo apt-get install -y aspnetcore-runtime-9.0

Fedora (based)

sudo dnf install aspnetcore-runtime-9.0

Fedora Atomic (e.g. Bazzite/Aurora/Bluefin)

rpm-ostree install aspnetcore-runtime-9.0

Arch (based)

sudo pacman -S aspnet-runtime-9.0

Still having issues? Visit our issues section.


Back to landing page