From 7ebe3625ddb3a0501d6eb9e92c01919da1481bb5 Mon Sep 17 00:00:00 2001 From: Anastasia Alexandrova Date: Tue, 9 Jul 2024 11:40:58 +0300 Subject: [PATCH] PSMDB-1476 added info what tarball suits which OS (#882) PBM-1416 added info what tarball suits which OS * Explained tarball types modified: docs/install/tarball.md --- docs/install/tarball.md | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/docs/install/tarball.md b/docs/install/tarball.md index 67c4cab9..f3b144f8 100644 --- a/docs/install/tarball.md +++ b/docs/install/tarball.md @@ -8,6 +8,44 @@ There are two tarballs available: * `percona-server-mongodb-{{release}}-x86_64.glibc2.35.tar.gz` is the tarball for Ubuntu 22.04. +To check which `glibc` version your system is using, run the following command: + +```{.bash data-prompt="$"} +$ ldd --version +``` + +??? example "Sample output" + + ```{.text .no-copy} + ldd (GNU libc) 2.28 + Copyright (C) 2018 Free Software Foundation, Inc. + This is free software; see the source for copying conditions. There is NO + warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + Written by Roland McGrath and Ulrich Drepper. + ``` + +## What tarballs to choose + +The following table helps you understand what tarball to download based on the glibc version of your operating system. + +| Operating system | Tarball to download | glibc version | +|------------------|---------------------|----------------| +| Ubuntu 22.04 | percona-server-mongodb-{{release}}-x86_64.glibc2.35.tar.gz | glibc2.35 | +| Ubuntu 20.04 | percona-server-mongodb-{{release}}-x86_64.glibc2.17.tar.gz | glibc2.31 | +| Debian 11 | percona-server-mongodb-{{release}}-x86_64.glibc2.17.tar.gz | glibc2.31 | +| Debian 10 | percona-server-mongodb-{{release}}-x86_64.glibc2.17.tar.gz | glibc2.28 | +| Red Hat Enterprise 8 | percona-server-mongodb-{{release}}-x86_64.glibc2.17.tar.gz | glibc2.28 | +| Red Hat Enterprise 7 | percona-server-mongodb-{{release}}-x86_64.glibc2.17.tar.gz | glibc2.17 | + +### Tarball types + +| Type | Name | Description | +|---|---|---| +| Full | percona-server-mongodb-{{release}}-x86_64..tar.gz | Contains binaries and libraries | +| Minimal | percona-server-mongodb-{{release}}-x86_64.-minimal.tar.gz| Contains binaries and libraries without debug symbols| +| Checksum| percona-server-mongodb-{{release}}-x86_64.-minimal.tar.gz.sha256sum | Contains the MD5 checksum to verify the integrity of the files after extraction| + + ## Preconditions The following packages are required for the installation.