linux:core-dump
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.txt · Last modified: 2023/05/29 11:55 by 127.0.0.1