.NET 6 has several dependencies that must be satisfied to run .NET apps. The commands to install these libraries are listed for multiple Linux distributions.
Feel free to contribute packages for distributions not (yet) listed in this document, including ones not supported by the .NET Team.
Tips:
- runtime-deps container images installs these same packages. You can look at those dockerfiles.
- pkgs.org is a useful site for searching for packages, to find the one for your distribution.
.NET depends on the following packages.
- GNU C Library (glibc)
- GNU C++ Library
- GCC low-level runtime library
- ICU
- Kerberos
- Open SSL
- zlib compression library
You do not need to install ICU if you enable globalization invariant mode.
If your app relies on https
endpoints, you'll also need to install ca-certificates
.
sudo apk add \
krb5-libs \
libgcc \
libintl \
libssl1.1 \
libstdc++ \
zlib
sudo apt-get update \
&& sudo apt-get install -y --no-install-recommends \
libc6 \
libgcc1 \
libgssapi-krb5-2 \
libicu67 \
libssl1.1 \
libstdc++6 \
zlib1g
sudo apt-get update \
&& sudo apt-get install -y --no-install-recommends \
libc6 \
libgcc1 \
libgssapi-krb5-2 \
libicu63 \
libssl1.1 \
libstdc++6 \
zlib1g
sudo apt-get update \
&& sudo apt-get install -y --no-install-recommends \
libc6 \
libgcc1 \
libgssapi-krb5-2 \
libicu66 \
libssl1.1 \
libstdc++6 \
zlib1g
Note: Add noninteractive for non-interactive installation.
sudo apt-get update \
&& sudo apt-get install -y --no-install-recommends \
libc6 \
libgcc1 \
libgssapi-krb5-2 \
libicu60 \
libssl1.1 \
libstdc++6 \
zlib1g \
The following distros are not supported by the .NET team. The following package information is provided on an as-is basis. Feel free contribute package information for the distro you use .NET with if it isn't listed.
sudo pacman -Sy \
glibc \
gcc \
krb5 \
icu \
openssl \
libc++ \
zlib
This set of packages was tested on the Arch and Manjaro.