From 4796aeeefd98e602797e52f3d8bbe9a948a1bd53 Mon Sep 17 00:00:00 2001 From: "Andy De George (adegeo)" Date: Tue, 14 Sep 2021 15:58:51 -0700 Subject: [PATCH] Debian 11 --- docs/core/install/linux-debian.md | 15 ++++++++++++++- docs/core/install/linux.md | 1 + 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/docs/core/install/linux-debian.md b/docs/core/install/linux-debian.md index 6e10b05596af1..0a73621a7d760 100644 --- a/docs/core/install/linux-debian.md +++ b/docs/core/install/linux-debian.md @@ -3,7 +3,7 @@ title: Install .NET on Debian - .NET description: Demonstrates the various ways to install .NET SDK and .NET Runtime on Debian. author: adegeo ms.author: adegeo -ms.date: 01/06/2021 +ms.date: 09/14/2021 --- # Install the .NET SDK or the .NET Runtime on Debian @@ -24,6 +24,7 @@ The following table is a list of currently supported .NET releases and the versi | Debian | .NET Core 2.1 | .NET Core 3.1 | .NET 5.0 | |--------------------------|---------------|---------------|----------------| +| ✔️ [11](#debian-11-) | ✔️ 2.1 | ✔️ 3.1 | ✔️ 5.0 | | ✔️ [10](#debian-10-) | ✔️ 2.1 | ✔️ 3.1 | ✔️ 5.0 | | ✔️ [9](#debian-9-) | ✔️ 2.1 | ✔️ 3.1 | ✔️ 5.0 | | ❌ [8](#debian-8-) | ✔️ 2.1 | ❌ 3.1 | ❌ 5.0 | @@ -38,6 +39,18 @@ The following versions of .NET are no longer supported. The downloads for these [!INCLUDE [package-manager uninstall notice](./includes/linux-uninstall-preview-info.md)] +## Debian 11 ✔️ + +[!INCLUDE [linux-prep-intro-apt](includes/linux-prep-intro-apt.md)] + +```bash +wget https://packages.microsoft.com/config/debian/11/packages-microsoft-prod.deb -O packages-microsoft-prod.deb +sudo dpkg -i packages-microsoft-prod.deb +rm packages-microsoft-prod.deb +``` + +[!INCLUDE [linux-apt-install-50](includes/linux-install-50-apt.md)] + ## Debian 10 ✔️ [!INCLUDE [linux-prep-intro-apt](includes/linux-prep-intro-apt.md)] diff --git a/docs/core/install/linux.md b/docs/core/install/linux.md index 285d20e8da7f7..521d2e93f055d 100644 --- a/docs/core/install/linux.md +++ b/docs/core/install/linux.md @@ -84,6 +84,7 @@ The following table is a list of currently supported .NET releases and the versi | Debian | .NET Core 2.1 | .NET Core 3.1 | .NET 5.0 | |--------------------------|---------------|---------------|----------------| +| ✔️ [11](linux-debian.md#debian-11-) | ✔️ 2.1 | ✔️ 3.1 | ✔️ 5.0 | | ✔️ [10](linux-debian.md#debian-10-) | ✔️ 2.1 | ✔️ 3.1 | ✔️ 5.0 | | ✔️ [9](linux-debian.md#debian-9-) | ✔️ 2.1 | ✔️ 3.1 | ✔️ 5.0 | | ❌ [8](linux-debian.md#debian-8-) | ✔️ 2.1 | ❌ 3.1 | ❌ 5.0 |