User Tools

Site Tools


linux:core-dump

This is an old revision of the document!


Code Dump

To create a core dump of a running/frozen process, use this (example chromium):

ps -ax | grep -i chromium | cut -d " " -f 2 | xargs gcore -a 

The resulting binary files can then be processed:

strings x.core | grep -i "something"
linux/core-dump.1644257137.txt.gz · Last modified: 2023/05/29 11:53 (external edit)