Is it possible to dump the current memory allocated for a process (by PID) to a file? Or read it somehow?
|
feedback
|
|
I'm not sure how you dump all the memory to a file without doing this repeatedly (if anyone knows an automated way to get gdb to do this please let me know), but the following works for any one batch of memory assuming you know the pid:
Pick one batch of memory (so for example 00621000-00622000) then use gdb to attach to the process and dump that memory: | |||
|
feedback
|
|
man proc says :
Maybe it can help you | |||
|
feedback
|