I was wondering if it is possible to generate a \"core\" file, copy if to another machine and then continue execution of the a core file on that machine?
I have seen the
There are lots of reasons you can't do what you want very easily. For example, when you restore the core file on the other machine how do you resolve file descriptors that you process had open? What about sockets, named pipes, semaphores, or any other OS-level resource? Basically unless your system is specifically designed to handle such an operation you can't naively dump a core file and move it to another machine.