Skip to content

Commit

Permalink
Update linux-packages.md for .NET 8 (#9290)
Browse files Browse the repository at this point in the history
Added new OS versions
  • Loading branch information
ashnaga committed May 6, 2024
1 parent 8ce8953 commit 918f278
Showing 1 changed file with 61 additions and 0 deletions.
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

0 comments on commit 918f278

Please sign in to comment.