When Linux runs out of memory (OOM), the OOM killer chooses a process to kill based on some heuristics (it's an interesting read: http://lwn.net/Articles/317814/). How do I find out which processes were recently killed by the OOM killer?
+2
A:
Try this out:
cat /var/log/messages | grep --ignore-case "killed process"
John Feminella
2009-03-09 02:54:54