How to view core.xx files in Linux?
The core.xxx files are created on Linux servers and holds the current state of a process working memory when a process is crashed. To view the core.xx files in Linux, execute the command:
root@host [~]# strings core.xxx
It will list different state of a process on each line.
Comments are closed.