First page Back Continue Last page Overview Graphics
How to figure out what's wrong
Is it a GUI application?
- Run it from the command line
Is it a daemon/server?
- Check system logs like /var/log/messages
- # grep -n “dsl” *.log
What is the application doing?
- $ strace <application name>
- $ lsof | grep “application name”
- $ ps auxf (look for parents/children)
- $ top -c
Notes: