2019-10-10 00:52:42 -04:00
#  Linux System Prerequisites
## Supported Distributions and Versions
2024-07-22 15:07:09 -06:00
Please see "[Supported architectures and operating systems for self-hosted runners ](https://docs.github.com/en/actions/hosting-your-own-runners/managing-self-hosted-runners/about-self-hosted-runners#linux )."
2019-10-10 00:52:42 -04:00
2021-01-21 13:45:16 -05:00
## Install .Net Core 3.x Linux Dependencies
2019-10-10 00:52:42 -04:00
2021-01-21 13:45:16 -05:00
The `./config.sh` will check .Net Core 3.x dependencies during runner configuration.
2019-10-10 00:52:42 -04:00
You might see something like this which indicate a dependency's missing.
``` bash
./config.sh
libunwind.so.8 = > not found
libunwind-x86_64.so.8 = > not found
2021-12-15 12:16:11 -05:00
Dependencies is missing for Dotnet Core 6.0
Execute ./bin/installdependencies.sh to install any missing Dotnet Core 6.0 dependencies.
2019-10-10 00:52:42 -04:00
```
You can easily correct the problem by executing `./bin/installdependencies.sh` .
2021-09-15 07:35:25 -04:00
The `installdependencies.sh` script should install all required dependencies on all supported Linux versions
2019-12-19 09:16:43 -05:00
> Note: The `installdependencies.sh` script will try to use the default package management mechanism on your Linux flavor (ex. `yum`/`apt-get`/`apt`).
2019-10-10 00:52:42 -04:00
2019-10-24 16:52:29 -04:00
### Full dependencies list
Debian based OS (Debian, Ubuntu, Linux Mint)
2022-06-15 19:37:02 +03:00
- liblttng-ust1 or liblttng-ust0
2021-09-15 07:35:25 -04:00
- libkrb5-3
2019-10-24 16:52:29 -04:00
- zlib1g
- libssl1.1, libssl1.0.2 or libssl1.0.0
- libicu63, libicu60, libicu57 or libicu55
2020-04-19 22:53:06 +02:00
Fedora based OS (Fedora, Red Hat Enterprise Linux, CentOS, Oracle Linux 7)
2019-10-24 16:52:29 -04:00
2021-09-15 07:35:25 -04:00
- lttng-ust
- openssl-libs
2019-10-24 16:52:29 -04:00
- krb5-libs
- zlib
- libicu
SUSE based OS (OpenSUSE, SUSE Enterprise)
- lttng-ust
- libopenssl1_1
- krb5
- zlib
- libicu60_2
2019-10-10 00:52:42 -04:00
## [More .Net Core Prerequisites Information](https://docs.microsoft.com/en-us/dotnet/core/linux-prerequisites?tabs=netcore2x)