To see all of the processes running on your system, try 'ps -ef'.
To see what each kill -# means, run 'kill -l' (thats a lowercase L, not a one). kill with no options, defaults to 'kill -15', which is a nice way of terminating a program. If a program is locked up and kill -15 doesn't work, then you can try 'kill -9 PID#'. kill -1 is the same as 'kill -HUP'.
ChrisP ------------------------------------------------------------------------------
If somebody helps you, please click the link in the botton left hand corner that says "Mark this post as a helpful/expert post".