Skip to content

Commit

Permalink
Update linux-packages.md (#9288)
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 2f859c6 commit f6bf6f8
Showing 1 changed file with 65 additions and 0 deletions.
65 changes: 65 additions & 0 deletions release-notes/6.0/linux-packages.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,18 @@ 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 \
krb5-libs \
libgcc \
libintl \
libssl3 \
libstdc++ \
zlib
```

## Alpine 3.13

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

```bash
sudo apt-get update \
&& sudo apt-get install -y --no-install-recommends \
libc6 \
libgcc1 \
libgssapi-krb5-2 \
libicu72 \
libssl3 \
libstdc++6 \
zlib1g
```

## Debian 11 "Bullseye"

Expand Down Expand Up @@ -64,6 +89,46 @@ sudo apt-get update \
libstdc++6 \
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 \
libgssapi-krb5-2 \
libicu72 \
libssl3 \
libstdc++6 \
zlib1g
```

## Ubuntu 22.04 "Jammy"

```bash
sudo apt-get update \
&& sudo apt-get install -y --no-install-recommends \
libc6 \
libgcc1 \
libgssapi-krb5-2 \
libicu70 \
libssl3 \
libstdc++6 \
zlib1g
```

## Ubuntu 20.04 "Focal"

Expand Down

0 comments on commit f6bf6f8

Please sign in to comment.