> For the complete documentation index, see [llms.txt](https://docs.sealights.io/knowledgebase/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.sealights.io/knowledgebase/setup-and-configuration/troubleshooting-faq/.net-.netcore/linux-.netcore-profiler-fails-to-start.md).

# 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
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

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

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
