Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update for Debian 11 #26104

Merged
merged 1 commit into from
Sep 15, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion docs/core/install/linux-debian.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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 |
Expand All @@ -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)]
Expand Down
1 change: 1 addition & 0 deletions docs/core/install/linux.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
Expand Down