Note: The archives category content is an automatically generated focus channel and does not neccessarily reflect the opinions of this blog. No responsibility is taken for the external links presented here, follow at your own discretion.
The archives content is never scraped from sites - but an abstract obtained from search engines.
| Problem |
Solution |
Example |
Reference |
Recommended |
You have a problem with a process, running some job on Solaris and need to see some debug information. Sometimes the problem is a missing library, etc and you need to spot the missing dependency. Symptoms could be a binary runs fine on one system and fails on another.
|
|
| Problem |
Solution |
Example |
Reference |
Recommended |
Run truss with the binary, to spot all the files it opens and for additional information. Sometimes you can even spot where the log files are.
|
|
| Problem |
Solution |
Example |
Reference |
Recommended |
This will show system process debug (solaris) for all exec/reads for a running process. truss -xall -vall -rall -t'read' -p PID This will run truss with the process. truss -xall -vall -rall -t'read' program
|
Leave a Reply