Isn't it /var/adm/messages?
You could also try searching for core files which might be produced when the system crashes, and use strings or similar to try to discover what caused the problem:
find / -name core - to find any core files.
strings /path/to/core | pg - to read any readable text in the core file.
Hope this helps.




Reply With Quote