# Linux .NETCore: Profiler Fails to Start

## Problem <a href="#problem" id="problem"></a>

I see the TestListener entry in the Cockpit Live agents attached to my application under test, but the Profiler doesn’t start.\
Even when I enable logs to file nothing happens despite the permissions to the executables, files and folders look good.

## Cause <a href="#cause" id="cause"></a>

Sometimes there are missing dependencies on Linux, and the Profiler cannot tell us about it since its process fails immediately before the initialization of the logger.

## Solution <a href="#solution" id="solution"></a>

You can use the Linux `ldd` command to show dependencies of the agent’s library on Linux (see [ldd(1) - Linux manual page](https://man7.org/linux/man-pages/man1/ldd.1.html) )

{% code overflow="wrap" lineNumbers="true" %}

```
ldd libSL.DotNet.ProfilerLib.Linux.so
# OR ldd <path-to-agent>/libSL.DotNet.ProfilerLib.Linux.so
```

{% endcode %}

It will produce a status of the agent dependencies like in the screenshot below

<figure><img src="/files/2A2hxk5GMMBcbcru1CYF" alt=""><figcaption></figcaption></figure>

If you cannot resolve the missing dependency, don't hesitate to get in touch with [Sealights Support](https://docs.sealights.io/knowledgebase/contact-support).


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.sealights.io/knowledgebase/setup-and-configuration/troubleshooting-faq/.net-.netcore/linux-.netcore-profiler-fails-to-start.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
