Skip to content

Correct ubuntu and debian dependencies #39253

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

Merged
merged 8 commits into from
Jan 24, 2024
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
3 changes: 2 additions & 1 deletion docs/core/install/linux-debian.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,8 @@ sudo apt-get update && \
When you install with a package manager, these libraries are installed for you. But, if you manually install .NET or you publish a self-contained app, you'll need to make sure these libraries are installed:

- libc6
- libgcc-s1
- libgcc1 (for 10.x)
- libgcc-s1 (for 11.x and 12.x)
- libgssapi-krb5-2
- libicu63 (for 10.x)
- libicu67 (for 11.x)
Expand Down
2 changes: 1 addition & 1 deletion docs/core/install/linux-ubuntu-2004.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ If you run into issues installing or even running .NET, see [Troubleshooting](li
When you install with a package manager, these libraries are installed for you. But, if you manually install .NET or you publish a self-contained app, you'll need to make sure these libraries are installed:

- libc6
- libgcc1
- libgcc-s1
- libgssapi-krb5-2
- libicu66
- libssl1.1
Expand Down
1 change: 0 additions & 1 deletion docs/core/install/linux-ubuntu-2204.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ If you run into issues installing or even running .NET, see [Troubleshooting](li
When you install with a package manager, these libraries are installed for you. But, if you manually install .NET or you publish a self-contained app, you'll need to make sure these libraries are installed:

- libc6
- libgcc1
- libgcc-s1
- libgssapi-krb5-2
- libicu70
Expand Down
1 change: 0 additions & 1 deletion docs/core/install/linux-ubuntu-2210.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ If you run into issues installing or even running .NET, see [Troubleshooting](li
When you install with a package manager, these libraries are installed for you. But, if you manually install .NET or you publish a self-contained app, you'll need to make sure these libraries are installed:

- libc6
- libgcc1
- libgcc-s1
- libgssapi-krb5-2
- libicu71
Expand Down
1 change: 0 additions & 1 deletion docs/core/install/linux-ubuntu-2304.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ If you run into issues installing or even running .NET, see [Troubleshooting](li
When you install with a package manager, these libraries are installed for you. But, if you manually install .NET or you publish a self-contained app, you'll need to make sure these libraries are installed:

- libc6
- libgcc1
- libgcc-s1
- libgssapi-krb5-2
- libicu72
Expand Down
1 change: 0 additions & 1 deletion docs/core/install/linux-ubuntu-2310.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ If you run into issues installing or even running .NET, see [Troubleshooting](li
When you install with a package manager, these libraries are installed for you. But, if you manually install .NET or you publish a self-contained app, you'll need to make sure these libraries are installed:

- libc6
- libgcc1
- libgcc-s1
- libgssapi-krb5-2
- libicu72
Expand Down
6 changes: 3 additions & 3 deletions docs/core/install/linux-ubuntu.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: .NET and Ubuntu overview
description: Demonstrates the various ways to install .NET SDK and .NET Runtime on Ubuntu.
author: adegeo
ms.author: adegeo
ms.date: 11/14/2023
ms.date: 01/24/2024
ms.custom: updateeachrelease
---

Expand Down Expand Up @@ -248,8 +248,8 @@ sudo apt-get update && \
When you install with a package manager, these libraries are installed for you. But, if you manually install .NET or you publish a self-contained app, you must install these dependencies to run your app:

- libc6
- libgcc1
- libgcc-s1 (for 22.x)
- libgcc1 (for 16.x and 18.x)
- libgcc-s1 (for 20.x or later)
- libgssapi-krb5-2
- libicu55 (for 16.x)
- libicu60 (for 18.x)
Expand Down