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 linux-packages.md for .NET 8 #9290

Merged
merged 1 commit into from
May 6, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
61 changes: 61 additions & 0 deletions release-notes/8.0/linux-packages.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,16 @@ You do not need to install ICU if you [enable globalization invariant mode](http

If your app relies on `https` endpoints, you'll also need to install `ca-certificates`.

## Alpine 3.18 - 3.19

```bash
sudo apk add \
libgcc \
libssl3 \
libstdc++ \
zlib
```

## Alpine 3.13

```bash
Expand All @@ -36,6 +46,19 @@ sudo apk add \
libstdc++ \
zlib
```
## Debian 12 "Bookworm"

```bash
sudo apt-get update \
&& sudo apt-get install -y --no-install-recommends \
libc6 \
libgcc-s1 \
libicu72 \
libssl3 \
libstdc++6 \
tzdata \
zlib1g \
```

## Debian 11 "Bullseye"

Expand Down Expand Up @@ -65,6 +88,44 @@ sudo apt-get update \
zlib1g
```

## Ubuntu 24.04 "Noble"

```bash
sudo apt-get update \
&& sudo apt-get install -y --no-install-recommends \
libc6 \
libgcc-s1 \
libicu74 \
libssl3 \
libstdc++6 \
zlib1g
```

## Ubuntu 23.10 "Mantic"

```bash
sudo apt-get update \
&& sudo apt-get install -y --no-install-recommends \
libc6 \
libgcc-s1 \
libicu72 \
libssl3 \
libstdc++6 \
zlib1g
```

## Ubuntu 22.04 "Jammy"

```bash
sudo apt-get update \
&& sudo apt-get install -y --no-install-recommends \
libc6 \
libgcc1 \
libicu70 \
libssl3 \
libstdc++6 \
zlib1g
```
## Ubuntu 20.04 "Focal"

```bash
Expand Down