Skip to content

Is there a Linux equivalent for CrashDumps? #65715

Answered by jkotas
danipen asked this question in Q&A
Discussion options

You must be logged in to vote

The equivalent on Linux is called core dump. You can either let the operating system create the core dump of the crashed process by running ulimit -c unlimited, or you can let the .NET runtime itself collect the core dump by setting environment variables described in https://docs.microsoft.com/en-us/dotnet/core/diagnostics/dumps . The later option has configuration similar to Windows minidumps, but it works only when the .NET runtime is able to intercept the process crash.

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by danipen
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
2 participants