PID stands for Process IDentifier. Each process has a unique number given to it so that the system can identify them. You can see most of your processes running, by typing 'ps -u' at the command prompt. The PID appears in the leftmost column.
The 'kill' command stops a process -be very careful how you use it- defined by the PID.
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".
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.